|
@@ -7,12 +7,13 @@
|
|
|
<view class="page-wrap">
|
|
|
<view class="base-info">
|
|
|
<view class="up u-flex">
|
|
|
- <image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
|
|
|
+ <image class="img" :src="performInfo.showImg" alt="">
|
|
|
<view class="text">
|
|
|
<view class="name text-item">{{performInfo.name}}-【成人票】</view>
|
|
|
- <view class="time text-item">今天 10:00-11:00</view>
|
|
|
- <view class="num text-item">成人票 x1</view>
|
|
|
- <view class="position text-item">{{performInfo.name}}</view>
|
|
|
+ <view class="time text-item">日期 {{pageData.day}}</view>
|
|
|
+ <view class="time text-item">场次 {{pageData.time}}</view>
|
|
|
+ <view class="num text-item">成人票 / {{pageData.positionName}}</view>
|
|
|
+ <!-- <view class="position text-item">{{performInfo.name}}</view> -->
|
|
|
<!-- <view class="addr u-flex u-row-between">
|
|
|
<view class="u-line-1">地址:遵义市《伟大转折》演艺中心</view>
|
|
|
<u-icon name="arrow-right" color="#2D2D2D" size="36rpx"></u-icon>
|
|
@@ -22,7 +23,7 @@
|
|
|
<view class="down">
|
|
|
<view class="num-wrap u-flex u-row-between">
|
|
|
<view class="title">选购数量</view>
|
|
|
- <view class="num">1</view>
|
|
|
+ <view class="num">{{totalVisitor}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -33,7 +34,7 @@
|
|
|
</view>
|
|
|
<view class="" v-if="vuex_member_info.isAuth">
|
|
|
<view class="item">姓名:{{vuex_member_info.name}}</view>
|
|
|
- <view class="item">手机号:{{vuex_member_info.mobile}}</view>
|
|
|
+ <view class="item">手机号:{{vuex_member_info.mobile|hidePhoneNumber}}</view>
|
|
|
<view class="item">身份证:{{vuex_member_info.id|maskID}}</view>
|
|
|
</view>
|
|
|
<view class="un-auth" v-else @click="$u.route('center/factorauth',{from:'bookticket'})">
|
|
@@ -133,8 +134,8 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="right">
|
|
|
- <view class="btn active" v-if="totalPrice>0&&cansubmit" @click="submitorder">去结算</view>
|
|
|
- <view class="btn" v-else>提交订单</view>
|
|
|
+ <view class="btn active" v-if="totalPrice>0&&cansubmit&&vuex_member_info.isAuth" @click="submitorder">立即支付</view>
|
|
|
+ <view class="btn" v-else>立即支付</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -149,6 +150,7 @@
|
|
|
return {
|
|
|
performId:'',
|
|
|
performInfo:{},
|
|
|
+ pageData:{},//上个页面传过来的数据
|
|
|
cansubmit:true,
|
|
|
staticUrl:this.$commonConfig.staticUrl,
|
|
|
visitors:[],//游客
|
|
@@ -159,6 +161,7 @@
|
|
|
{id:'3',name:'王五',sfz:'522501202112037605'},
|
|
|
],//游客列表
|
|
|
selectedVisitor:[],//选中的游客
|
|
|
+ params:{},//要提交的数据
|
|
|
|
|
|
}
|
|
|
},
|
|
@@ -167,21 +170,24 @@
|
|
|
let that = this;
|
|
|
return this.visitors.reduce((total, item) => {
|
|
|
let price = null;
|
|
|
- // if(that.vuex_member_info.priceType>1){
|
|
|
- // price = item.vipPrice
|
|
|
- // }else{
|
|
|
- // price = item.salePrice
|
|
|
- // }
|
|
|
- price = item.levelPrice
|
|
|
- total += price * item.quantity;
|
|
|
+ price = Number(that.pageData.price);
|
|
|
+ total += price;
|
|
|
return total;
|
|
|
}, 0).toFixed(2);
|
|
|
},
|
|
|
+ totalVisitor() {
|
|
|
+ let that = this;
|
|
|
+ return this.visitors.reduce((total, item) => {
|
|
|
+ total += 1;
|
|
|
+ return total;
|
|
|
+ },0);
|
|
|
+ },
|
|
|
},
|
|
|
onShow() {
|
|
|
},
|
|
|
onLoad(page) {
|
|
|
console.log('page',page);
|
|
|
+ this.pageData = page;
|
|
|
this.performId = page.performId;
|
|
|
this.getSystemInfo();
|
|
|
this.getPerformInfo();
|
|
@@ -230,6 +236,7 @@
|
|
|
},
|
|
|
submitorder(){
|
|
|
this.cansubmit = false;
|
|
|
+ console.log('params',this.params);
|
|
|
},
|
|
|
|
|
|
}
|