|
|
|
|
@ -6,8 +6,8 @@
|
|
|
|
|
预约的活动
|
|
|
|
|
</view>
|
|
|
|
|
<view class="box-card-content activityBox-content">
|
|
|
|
|
<view class="activityBox-row flex-row justify-between">
|
|
|
|
|
<text class="activityBox-title">{{list.name}}</text>
|
|
|
|
|
<view class="activityBox-row ">
|
|
|
|
|
<view class="activityBox-title">{{list.name}}</view>
|
|
|
|
|
<view class="tag tag_green activityBox_btn">
|
|
|
|
|
<text>{{numberlist.name}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
|
|
|
|
|
<view class="activityBox-row">
|
|
|
|
|
<text class="icon-renshu iconfont"></text>
|
|
|
|
|
<text>人数限制:{{numberlist.total==0?'不限':numberlist.total}}</text>
|
|
|
|
|
<text>人数限制:{{(list.form==2?10 : (numberlist.total==0?'不限':numberlist.total))}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="activityBox-row flex-row align-center" @click="tothere">
|
|
|
|
|
<text class="icon-ditu-dibiao iconfont"></text>
|
|
|
|
|
@ -62,7 +62,7 @@
|
|
|
|
|
<text class="box-tips-txt"
|
|
|
|
|
v-if="type=='user'">每单限购{{list.person_max_count}}张,同一身份证当天限购1张</text>
|
|
|
|
|
<text class="box-tips-txt"
|
|
|
|
|
v-if="type=='team'">{{list.team_min_count}}人以上可团体预约<!-- ,一个团体最多{{list.team_max_count}}人 --></text>
|
|
|
|
|
v-if="type=='team'">{{list.form==2?10:list.team_min_count}}人以上可团体预约<!-- ,一个团体最多{{list.team_max_count}}人 --></text>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="box-card-content">
|
|
|
|
|
@ -354,9 +354,9 @@
|
|
|
|
|
this.form.activity_number_id = parseInt(options.activity_number_id);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
onShow(){
|
|
|
|
|
onShow() {
|
|
|
|
|
var that = this;
|
|
|
|
|
that.numberlist={};
|
|
|
|
|
that.numberlist = {};
|
|
|
|
|
wx.getStorage({
|
|
|
|
|
key: 'activityinfo',
|
|
|
|
|
success(res) {
|
|
|
|
|
@ -369,7 +369,7 @@
|
|
|
|
|
if (that.form.type == 2) {
|
|
|
|
|
that.form.total = 1
|
|
|
|
|
} else if (that.form.type == 1) {
|
|
|
|
|
that.form.total = 1;//res.data.team_min_count;
|
|
|
|
|
that.form.total = 1; //res.data.team_min_count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|