Commit 67bf52de authored by Mac's avatar Mac

1

parent 18b51ee4
...@@ -191,8 +191,9 @@ ...@@ -191,8 +191,9 @@
</view> --> </view> -->
</view> </view>
<view v-if="detial.IsJoinActivity==0"> <view v-if="detial.IsJoinActivity==0">
<view class="btnc" v-if="detial.IsSignUp==1" :style="{background:mainColor}" @click="gosignUp()">立即预约</view> <view class="btnc" v-if="detial.IsSignUp==1 && (detial.TotalMan- detial.JoinNum)>0" :style="{background:mainColor}" @click="gosignUp()">立即预约</view>
<view class="btnc" v-if="detial.IsSignUp==0">不可预约</view> <view class="btnc" v-if="detial.IsSignUp==0 || (detial.TotalMan- detial.JoinNum)==0">不可预约</view>
</view> </view>
<view v-if="detial.IsJoinActivity==1"> <view v-if="detial.IsJoinActivity==1">
<view class="btnc" v-if="detial.IsSignUp==1">已报名</view> <view class="btnc" v-if="detial.IsSignUp==1">已报名</view>
......
...@@ -154,11 +154,11 @@ ...@@ -154,11 +154,11 @@
</view> </view>
<view class="details-box" v-for="(x,y) in item.list" :key='y' @click="gourl(x)"> <view class="details-box" v-for="(x,y) in item.list" :key='y' @click="gourl(x)">
<view class="details-box-top-z" v-if="(x.TotalMan-x.JoinNum)>0" :style="{background:mainColor}"></view> <view class="details-box-top-z" v-if="(x.TotalMan-x.JoinNum)>0" :style="{background:mainColor}"></view>
<view class="details-box-top-f" v-if="(x.TotalMan-x.JoinNum)==0" ></view> <view class="details-box-top-f" v-if="(x.TotalMan-x.JoinNum)<1" ></view>
<view class="details-box-t-positions" v-if="(x.TotalMan-x.JoinNum)>0" :style="{background:mainColor}"> <view class="details-box-t-positions" v-if="(x.TotalMan-x.JoinNum)>0" :style="{background:mainColor}">
<text>{{(x.TotalMan-x.JoinNum)>=6?'可预约':(x.TotalMan-x.JoinNum)<6?'剩余'+(x.TotalMan-x.JoinNum)+'个空位':''}}</text> <text>{{(x.TotalMan-x.JoinNum)>=6?'可预约':(x.TotalMan-x.JoinNum)<6?'剩余'+(x.TotalMan-x.JoinNum)+'个空位':''}}</text>
</view> </view>
<view class="details-box-t-positions" v-if="(x.TotalMan-x.JoinNum)==0" :style="{background:'#40766E'}"> <view class="details-box-t-positions" v-if="(x.TotalMan-x.JoinNum)<1" :style="{background:'#40766E'}">
爆满 爆满
</view> </view>
<!-- 内容 --> <!-- 内容 -->
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
return { return {
show:false, show:false,
current:1, current:1,
pageTitle: "报名", pageTitle: "活动列表",
showAuth: false, showAuth: false,
u: {}, u: {},
mainColor: "", mainColor: "",
......
...@@ -39,8 +39,9 @@ ...@@ -39,8 +39,9 @@
<u-icon name="phone-o" :size="28" color="#999999" style='margin-right: 5px;margin-left: 10px;' ></u-icon> <u-icon name="phone-o" :size="28" color="#999999" style='margin-right: 5px;margin-left: 10px;' ></u-icon>
<view>{{x.LinkTel}}</view> <view>{{x.LinkTel}}</view>
<u-icon name="star-o" :size="28" :color="mainColor" style='margin-right: 5px;margin-left: 10px;' ></u-icon> <u-icon name="star-o" :size="28" :color="mainColor" style='margin-right: 5px;margin-left: 10px;' ></u-icon>
<view v-if="x.Money>0" :style="{color:mainColor}">{{x.Money}}</view> <view v-if="x.Money>0 && x.TotalPoint==0" :style="{color:mainColor}">{{x.Money}}</view>
<view v-if="x.Money==0" :style="{color:mainColor}">免费</view> <view v-if="x.Money==0 && x.TotalPoint>0" :style="{color:mainColor}">{{x.TotalPoint}}</view>
<view v-if="x.Money==0 && x.TotalPoint==0" :style="{color:mainColor}">免费</view>
</view> </view>
<view class="box-Remark"> <view class="box-Remark">
<view class="box-Remark-top"> <view class="box-Remark-top">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment