jufubao-base 1.0.140 → 1.0.142-beta1
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
|
@@ -439,7 +439,7 @@ export default {
|
|
|
439
439
|
tabIndex: 1,
|
|
440
440
|
isBack: null, //是否使用返回键
|
|
441
441
|
inCallback: null, //内部跳转地址
|
|
442
|
-
isShowCode: '
|
|
442
|
+
isShowCode: 'Y',
|
|
443
443
|
|
|
444
444
|
|
|
445
445
|
//页面跳转地址
|
|
@@ -493,7 +493,7 @@ export default {
|
|
|
493
493
|
this.detailUrl = getContainerPropsValue(container,"content.detail_url",{value: ""}).value;
|
|
494
494
|
this.confirmUrl = getContainerPropsValue(container,"content.confirm_url",{value: ""}).value;
|
|
495
495
|
this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
|
|
496
|
-
this.isShowCode = getContainerPropsValue(container, "content.isShowCode", "
|
|
496
|
+
this.isShowCode = getContainerPropsValue(container, "content.isShowCode", "Y");
|
|
497
497
|
},
|
|
498
498
|
|
|
499
499
|
handleToLink(path) {
|
|
@@ -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
|