充值页面调整
商品折扣显示逻辑调整 增加公众号跳转修改资料逻辑
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<view class='c-flex-row'>
|
||||
<text class='goods-price accent-text-color'>
|
||||
¥{{ ((goodsBean?.price || 0) * ((userInfo.levelEntity?.discount || 100) / 100)).toFixed(2) }}
|
||||
<text v-if='userInfo.levelEntity?.discount>0'
|
||||
<text v-if='userInfo.levelEntity?.discount>0&&userInfo.levelEntity?.discount<100'
|
||||
style='display:unset;text-decoration: line-through;font-size: 30rpx;color: #999999'>
|
||||
¥{{ goodsBean?.price || 0 }}
|
||||
</text>
|
||||
@@ -57,7 +57,7 @@
|
||||
<image :src='item.images||defaultImage' />
|
||||
<text>{{ item.goodsName || '未知' }}</text>
|
||||
<text class='goods-price'>{{ (item.price * ((userInfo.levelEntity?.discount || 100) / 100)).toFixed(2) }}
|
||||
<text v-if='userInfo.levelEntity?.discount>0'
|
||||
<text v-if='userInfo.levelEntity?.discount>0&&userInfo.levelEntity?.discount<100'
|
||||
style='text-decoration: line-through;font-size: 25rpx;color: #999999'>{{ item.price }}
|
||||
</text>
|
||||
</text>
|
||||
|
Reference in New Issue
Block a user