虚拟信息富文本优化

master
gongfuxiang 2022-01-03 15:26:24 +08:00
parent fe0605a22f
commit d7426b4f19
1 changed files with 5 additions and 5 deletions

View File

@ -51,12 +51,12 @@
<view class="br-b padding-bottom-main fw-b text-size">{{site_fictitious.title || '密钥信息'}}</view>
<view class="panel-content oh padding-top-main">
<view v-if="(site_fictitious.tips || null) != null" class="tips-value radius padding-main margin-bottom-main">
<rich-text :nodes="site_fictitious.tips"></rich-text>
<mp-html :content="site_fictitious.tips" />
</view>
<view v-for="(item, index) in detail.items" :key="index" class="item br-b-dashed oh padding-bottom-main margin-bottom-main">
<image class="left-image br fl radius" :src="item.images" mode="aspectFill"></image>
<view class="right-value fr">
<rich-text v-if="(item.fictitious_goods_value || null) != null" :nodes="item.fictitious_goods_value"></rich-text>
<mp-html v-if="(item.fictitious_goods_value || null) != null" :content="item.fictitious_goods_value" />
<text v-else class="cr-gray">未配置数据</text>
</view>
</view>
@ -143,9 +143,9 @@
onShow() {
//
this.init();
//
this.init();
//
app.globalData.show_share_menu();
},