jufubao-movie 1.0.56-beta2 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-movie",
3
- "version": "1.0.56-beta2",
3
+ "version": "1.0.56-beta4",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -160,10 +160,9 @@ module.exports = [
160
160
  {
161
161
  mapFnName: "getVipList",
162
162
  title: "会员中心 - 会员卡列表",
163
- path: "/member/v1/:namespace/vip-card",
163
+ path: "/member/v1/vip-card",
164
164
  isRule: false,
165
165
  params: {
166
- namespace: ['业务线', 'String', true],
167
166
  is_show_exchange_code: ['是否展示 兑换码 ', 'Y/N,默认N', false],
168
167
  },
169
168
  isConsole: true,
@@ -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>
@@ -140,13 +140,13 @@
140
140
  @choseVipCard="handleChoseVipCard"></cus-vip-list>
141
141
  </view>
142
142
 
143
- <view v-if="isShowPlusSavingMoney" class="vip_pay_info">
143
+ <view v-if="is_show_vip_card_list==='Y'" class="vip_pay_info">
144
144
  <view class="good_vip_price">
145
145
  <xd-list-item label="商品价格" paddingLR="40rpx" size="small" showBottom>
146
146
  <!-- <view style="color: #999999;">145.00</view> -->
147
147
  <xd-unit :price="origin_total_price" :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
148
148
  </xd-list-item>
149
- <xd-list-item label="PLUS专项立减" size="small" paddingLR="40rpx" >
149
+ <xd-list-item v-if="isShowPlusSavingMoney" label="PLUS专项立减" size="small" paddingLR="40rpx" >
150
150
  <view slot="label" style="color: #86541E;">PLUS专项立减</view>
151
151
  <!-- <view style="color: #FF7070;">-5.00</view> -->
152
152
  <xd-unit :price="plus_saving_money" :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
@@ -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']