cb-biz-ui 1.5.6 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -65,11 +65,11 @@
|
|
|
65
65
|
</ui-tag>
|
|
66
66
|
</view>
|
|
67
67
|
</view>
|
|
68
|
-
<view class="rebate-box" v-if="entity.
|
|
68
|
+
<view class="rebate-box" v-if="entity.rebateGold">
|
|
69
69
|
<view class="rebate-box_title"> 购买返利 </view>
|
|
70
70
|
<view class="rebate-box_content">
|
|
71
71
|
<text class="rebate-box_content_text"
|
|
72
|
-
>约¥{{ entity.
|
|
72
|
+
>约¥{{ entity.rebateMoney || 0 }}</text
|
|
73
73
|
>
|
|
74
74
|
<view class="rebate-box_content_icon">
|
|
75
75
|
(
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
</view>
|
|
20
20
|
<view
|
|
21
21
|
class="rebate"
|
|
22
|
-
v-if="data.saleStatus == 10 && data.skuCommonExt
|
|
22
|
+
v-if="data.saleStatus == 10 && data.skuCommonExt?.enableRebate"
|
|
23
23
|
>
|
|
24
|
-
<text class="text">购后返利:¥{{ data.skuCommonExt
|
|
24
|
+
<text class="text">购后返利:¥{{ data.skuCommonExt?.rebateVal || 0 }}</text>
|
|
25
25
|
</view>
|
|
26
26
|
</view>
|
|
27
27
|
<view class="text-box">
|
package/libs/css/goods-card.scss
CHANGED