jufubao-movie 1.0.56-beta3 → 1.0.56-beta4
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
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
:fontSize="24"
|
|
102
102
|
:price="order_info.total_price"
|
|
103
103
|
></xd-unit> -->
|
|
104
|
-
<CusPrice :isVip="is_plus_site" :showPrice="order_info.show_prices" type="order" ></CusPrice>
|
|
104
|
+
<CusPrice :isShowIcon="isShowIcon" :isVip="is_plus_site" :showPrice="order_info.show_prices" type="order" ></CusPrice>
|
|
105
105
|
</template>
|
|
106
106
|
|
|
107
107
|
</view>
|
|
@@ -168,8 +168,8 @@
|
|
|
168
168
|
<view v-else>
|
|
169
169
|
<view v-if="choseCard && choseCard.cardPayPrice" slot="label">{{item.show_name}} <text style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view>
|
|
170
170
|
<template v-if="choseCard && choseCard.cardPayPrice">
|
|
171
|
-
<xd-unit v-if="choseCard.unit == '次'" :price="choseCard.cardPayPoint" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit"></xd-unit>
|
|
172
|
-
<xd-unit v-else :price="choseCard.cardPayPrice" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit || ''"></xd-unit>
|
|
171
|
+
<xd-unit :isShowIcon="isShowIcon" v-if="choseCard.unit == '次'" :price="choseCard.cardPayPoint" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit"></xd-unit>
|
|
172
|
+
<xd-unit :isShowIcon="isShowIcon" v-else :price="choseCard.cardPayPrice" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit || ''"></xd-unit>
|
|
173
173
|
</template>
|
|
174
174
|
<view v-else>请选择</view>
|
|
175
175
|
</view>
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
<view style="color:#CCCCCC;font-size: 20rpx">已使用其他票券,不可用</view>
|
|
180
180
|
</view>
|
|
181
181
|
<view v-else>
|
|
182
|
-
<xd-unit v-if="choseWallet && choseWallet.walletPayPrice" :price='choseWallet.walletPayPrice' :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
|
|
182
|
+
<xd-unit :isShowIcon="isShowIcon" v-if="choseWallet && choseWallet.walletPayPrice" :price='choseWallet.walletPayPrice' :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
|
|
183
183
|
<view v-else>请选择</view>
|
|
184
184
|
</view>
|
|
185
185
|
</xd-list-item>
|
|
@@ -199,6 +199,7 @@
|
|
|
199
199
|
<view v-if="is_not_show_price !== 'Y'" style="display: flex;align-items:center;">
|
|
200
200
|
<view style="margin-right: 8rpx;">应付:</view>
|
|
201
201
|
<xd-unit
|
|
202
|
+
:isShowIcon="isShowIcon"
|
|
202
203
|
:price="orderNeedPayPrice"
|
|
203
204
|
:isOld="false"
|
|
204
205
|
:font-size="36"
|
|
@@ -411,8 +412,12 @@
|
|
|
411
412
|
},
|
|
412
413
|
computed: {
|
|
413
414
|
...mapState({
|
|
414
|
-
brandInfo: state => state.brandInfo
|
|
415
|
+
brandInfo: state => state.brandInfo,
|
|
416
|
+
siteInfo: state => state.siteInfo,
|
|
415
417
|
}),
|
|
418
|
+
isShowIcon() {
|
|
419
|
+
return this.siteInfo.mapping.is_show_coin_icon==='Y'
|
|
420
|
+
},
|
|
416
421
|
bottomFixedStyle(){
|
|
417
422
|
return this.fixedStyle({paddingBottom: 10, zIndex: 100});
|
|
418
423
|
},
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
:isShowIcon="false"
|
|
169
169
|
:font-size="24"/> -->
|
|
170
170
|
<!-- {{item.sale_price}} -->
|
|
171
|
-
<CusPrice :isPlus="is_plus_site" :showPrice="item.show_prices" range="起" type="schedule"></CusPrice>
|
|
171
|
+
<CusPrice :isShowIcon="isShowIcon" :isPlus="is_plus_site" :showPrice="item.show_prices" range="起" type="schedule"></CusPrice>
|
|
172
172
|
</view>
|
|
173
173
|
<!-- <view class="_sub"> <xd-coins class="xd-coins" :size="0.2"></xd-coins> 起</view> -->
|
|
174
174
|
</view>
|
|
@@ -257,7 +257,11 @@
|
|
|
257
257
|
computed: {
|
|
258
258
|
...mapState({
|
|
259
259
|
siteMap: state => state.siteInfo.mapping,
|
|
260
|
+
siteInfo: state => state.siteInfo,
|
|
260
261
|
}),
|
|
262
|
+
isShowIcon() {
|
|
263
|
+
return this.siteInfo.mapping.is_show_coin_icon==='Y'
|
|
264
|
+
},
|
|
261
265
|
film_id(){
|
|
262
266
|
if(!this.filmInfo) return "";
|
|
263
267
|
return this.filmInfo['film_id']
|