hookehuyr

fix 修复图片展示宽度

<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-03-28 13:00:53
* @LastEditTime: 2024-03-28 18:20:06
* @FilePath: /meihuaApp/src/pages/detail/index.vue
* @Description: 房间详情页面
-->
......@@ -187,7 +187,8 @@ onMounted(async () => {
// 给所有 img 标签添加 mode 缩放模式
Taro.options.html.transformElement = (el) => {
if (el.nodeName === 'image') {
el.setAttribute('mode', 'widthFix')
el.setAttribute('mode', 'widthFix');
el.setAttribute('style', 'width: 100%');
}
return el
}
......