|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
|
|
|
|
|
<view class="activityBox-row">
|
|
|
|
|
<text class="icon-renshu iconfont"></text>
|
|
|
|
|
<text>{{list.form==2?'起约人数':'人数限制'}}:{{(list.form==2?10 : (numberlist.total==0?'不限':numberlist.total))}}</text>
|
|
|
|
|
<text>{{list.form==2?'起约人数':'人数限制'}}:{{(list.form==2?minTotal : (numberlist.total==0?'不限':numberlist.total))}}</text>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view class="activityBox-row flex-row align-center" @click="tothere">
|
|
|
|
|
@ -376,7 +376,7 @@
|
|
|
|
|
key: 'activityinfo',
|
|
|
|
|
success(res) {
|
|
|
|
|
that.list = res.data;
|
|
|
|
|
that.minTotal = that.list.form == 2 ? 10 : (that.type == 'user' ? 1 : that.list.team_min_count)
|
|
|
|
|
that.minTotal = that.list.form == 2 ? that.list.team_min_count : (that.type == 'user' ? 1 : that.list.team_min_count)
|
|
|
|
|
that.maxTotal = that.type == 'user' ? that.list.person_max_count : that.list.team_max_count
|
|
|
|
|
that.form.total = that.minTotal
|
|
|
|
|
for (var m of that.list.numbers) {
|
|
|
|
|
|