jufubao-base 1.0.141 → 1.0.142-beta2
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.
package/package.json
CHANGED
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
:price="Sitem.sale_price"
|
|
203
203
|
:color="mainColor"
|
|
204
204
|
:fontSize="32"
|
|
205
|
-
v-if="biz_code !== 'gift'"
|
|
205
|
+
v-if="biz_code !== 'gift' || info.is_show_gift_price"
|
|
206
206
|
></xd-unit>
|
|
207
207
|
</view>
|
|
208
208
|
<view
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
</view>
|
|
580
580
|
</view>
|
|
581
581
|
<view
|
|
582
|
-
v-if="info.pay_info && biz_code !== 'gift'"
|
|
582
|
+
v-if="info.pay_info && (biz_code !== 'gift' || info.is_show_gift_price)"
|
|
583
583
|
class="jfb-base-order-detail__body-card"
|
|
584
584
|
:style="{
|
|
585
585
|
background: backgroundColor,
|
|
@@ -714,7 +714,7 @@
|
|
|
714
714
|
>
|
|
715
715
|
<view
|
|
716
716
|
style="display: flex; align-items: center; margin-right: 30rpx"
|
|
717
|
-
v-if="biz_code !== 'gift'"
|
|
717
|
+
v-if="biz_code !== 'gift' || info.is_show_gift_price"
|
|
718
718
|
>
|
|
719
719
|
<text>应付:</text>
|
|
720
720
|
<xd-unit
|
|
@@ -117,13 +117,13 @@
|
|
|
117
117
|
class="jfb-base-order-list__body-order-item-content-info-price"
|
|
118
118
|
>
|
|
119
119
|
<view :style="{ fontSize: '32rpx', color: mainColor }">
|
|
120
|
-
<xd-unit
|
|
120
|
+
<!-- <xd-unit
|
|
121
121
|
:isOld="false"
|
|
122
122
|
:price="Sitem.sale_price"
|
|
123
123
|
:color="mainColor"
|
|
124
124
|
:fontSize="32"
|
|
125
125
|
v-if="item.biz_code !== 'gift'"
|
|
126
|
-
></xd-unit>
|
|
126
|
+
></xd-unit> -->
|
|
127
127
|
</view>
|
|
128
128
|
<view class="info-price">
|
|
129
129
|
<text>X</text>
|