gxd-uni-library-editx 1.0.87-beta2 → 1.0.87-beta3
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
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<view class="column_label">
|
|
11
11
|
订单总额
|
|
12
12
|
</view>
|
|
13
|
-
<view class="column_value text-gray">
|
|
13
|
+
<view v-if="is_not_show_price !== 'Y'" class="column_value text-gray">
|
|
14
14
|
<xd-unit
|
|
15
15
|
:price="total_price"
|
|
16
16
|
:isOld="false"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
仍需支付
|
|
25
25
|
<view class="label_sub">(可使用多张票券支付)</view>
|
|
26
26
|
</view>
|
|
27
|
-
<view class="column_value text-primary">
|
|
27
|
+
<view v-if="is_not_show_price !== 'Y'" class="column_value text-primary">
|
|
28
28
|
<xd-unit
|
|
29
29
|
:price="needPayPrice"
|
|
30
30
|
:isOld="false"
|
|
@@ -252,9 +252,13 @@ export default {
|
|
|
252
252
|
default: false
|
|
253
253
|
},
|
|
254
254
|
payThird: { //是否支持补差
|
|
255
|
-
|
|
255
|
+
type: Boolean,
|
|
256
256
|
default: true
|
|
257
257
|
},
|
|
258
|
+
is_not_show_price: {
|
|
259
|
+
type: String,
|
|
260
|
+
default: "",
|
|
261
|
+
},
|
|
258
262
|
// payChannels: { //三方支付列表
|
|
259
263
|
// type: Array,
|
|
260
264
|
// default: () => {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
仍需支付
|
|
27
27
|
<view class="label_sub">(可使用多张票券支付)</view>
|
|
28
28
|
</view>
|
|
29
|
-
<view class="column_value text-primary">
|
|
29
|
+
<view v-if="is_not_show_price !== 'Y'" class="column_value text-primary">
|
|
30
30
|
<xd-unit
|
|
31
31
|
:price="needPayPrice"
|
|
32
32
|
:isOld="false"
|
|
@@ -257,6 +257,10 @@ export default {
|
|
|
257
257
|
},
|
|
258
258
|
hadChoseCard: {
|
|
259
259
|
type: null | Array,
|
|
260
|
+
},
|
|
261
|
+
is_not_show_price: {
|
|
262
|
+
type: String,
|
|
263
|
+
default: ""
|
|
260
264
|
}
|
|
261
265
|
},
|
|
262
266
|
watch: {
|