no message
Showing
2 changed files
with
8 additions
and
5 deletions
| ... | @@ -64,7 +64,7 @@ | ... | @@ -64,7 +64,7 @@ |
| 64 | </el-col> | 64 | </el-col> |
| 65 | <el-col :lg="8" :md="12" :xl="8" v-if="matchData.type=='0'"> | 65 | <el-col :lg="8" :md="12" :xl="8" v-if="matchData.type=='0'"> |
| 66 | <p class="countDownTitle"><span>报名截止倒计时</span></p> | 66 | <p class="countDownTitle"><span>报名截止倒计时</span></p> |
| 67 | <van-count-down :time="startSign>0?startSign>0:time" format="DD 天 HH 时 mm 分 ss 秒"> | 67 | <van-count-down :time="startSign>0?startSign:time" format="DD 天 HH 时 mm 分 ss 秒"> |
| 68 | <template #default="timeData"> | 68 | <template #default="timeData"> |
| 69 | <span class="block">{{ timeData.days }}</span> | 69 | <span class="block">{{ timeData.days }}</span> |
| 70 | <span class="colon">天</span> | 70 | <span class="colon">天</span> | ... | ... |
| ... | @@ -133,12 +133,15 @@ | ... | @@ -133,12 +133,15 @@ |
| 133 | 133 | ||
| 134 | </el-col> | 134 | </el-col> |
| 135 | <el-col :lg="8" :md="12" :xl="8" v-if="matchData.type=='0'"> | 135 | <el-col :lg="8" :md="12" :xl="8" v-if="matchData.type=='0'"> |
| 136 | <p class="countDownTitle"> | 136 | <p class="countDownTitle" v-if="language==0"> |
| 137 | <span v-if="language==0">报名截止倒计时</span> | 137 | <span v-if="startSign>0">报名开始倒计时</span> |
| 138 | <span v-else>REGISTRATION COUNTDOWN</span> | 138 | <span v-else>报名截止倒计时</span> |
| 139 | </p> | ||
| 140 | <p class="countDownTitle" v-else> | ||
| 141 | <span>REGISTRATION COUNTDOWN</span> | ||
| 139 | </p> | 142 | </p> |
| 140 | 143 | ||
| 141 | <van-count-down :time="startSign>0?startSign>0:time" format="DD 天 HH 时 mm 分 ss 秒"> | 144 | <van-count-down :time="startSign>0?startSign:time" format="DD 天 HH 时 mm 分 ss 秒"> |
| 142 | <template #default="timeData"> | 145 | <template #default="timeData"> |
| 143 | <span class="block">{{ timeData.days }}</span> | 146 | <span class="block">{{ timeData.days }}</span> |
| 144 | <span class="colon">{{ language == 0 ? '天' : 'Days' }}</span> | 147 | <span class="colon">{{ language == 0 ? '天' : 'Days' }}</span> | ... | ... |
-
Please register or sign in to post a comment