12a5d160 by 杨炀

no message

1 parent 360b799a
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
12 <!-- <a class="more" @click="goList(query2.sortId,'专题报道')">MORE</a>--> 12 <!-- <a class="more" @click="goList(query2.sortId,'专题报道')">MORE</a>-->
13 </div> 13 </div>
14 <div> 14 <div>
15 <div class="item" v-for="n in newsList" :key="n.id" @click="goDetail(n)"> 15 <div class="item" v-for="n in newsList2" :key="n.id" @click="goDetail(n)">
16 <p class="esp">{{ n.name }}</p> 16 <p class="esp">{{ n.name }}</p>
17 </div> 17 </div>
18 </div> 18 </div>
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
20 <div class="indexTitle"><h3 class="leftboderTT">{{ language==0?'赛事视频':'Event Videos' }}</h3> 20 <div class="indexTitle"><h3 class="leftboderTT">{{ language==0?'赛事视频':'Event Videos' }}</h3>
21 <!-- <a class="more" @click="goList(10000006,'赛事视频')">MORE</a>--> 21 <!-- <a class="more" @click="goList(10000006,'赛事视频')">MORE</a>-->
22 </div> 22 </div>
23 <div class="item" v-for="n in newsList2" :key="n.id" @click="goDetail(n)"> 23 <div class="item" v-for="n in newsList" :key="n.id" @click="goDetail(n)">
24 <div class="videoImgbox" @click="goDetail(n)"> 24 <div class="videoImgbox" @click="goDetail(n)">
25 <img :src="fillImgUrl(n.picUrl)"> 25 <img :src="fillImgUrl(n.picUrl)">
26 </div> 26 </div>
......
...@@ -235,7 +235,7 @@ const { ...@@ -235,7 +235,7 @@ const {
235 signDoneGroupList, 235 signDoneGroupList,
236 time 236 time
237 } = toRefs(data) 237 } = toRefs(data)
238 const signTypePop = false 238 const signTypePop = ref(false)
239 onMounted(() => { 239 onMounted(() => {
240 if (group) { 240 if (group) {
241 groupId.value = group.id 241 groupId.value = group.id
...@@ -400,6 +400,16 @@ function checkIsSign() { ...@@ -400,6 +400,16 @@ function checkIsSign() {
400 </script> 400 </script>
401 401
402 <style scoped lang="scss"> 402 <style scoped lang="scss">
403 .rItem{height: 130px;cursor: pointer;width: 350px;padding: 1px;margin:20px auto;
404 h3{font-size: 30px;margin: 50px;}
405 &.r1{background: url("@/assets/dance/r1b.png") no-repeat left;
406 &:hover{background: url("@/assets/dance/r1.png") no-repeat left;}
407 }
408 &.r2{background: url("@/assets/dance/r2b.png") no-repeat left;
409 &:hover{background: url("@/assets/dance/r2.png") no-repeat left;}
410 }
411 &:hover{color: #fff;}
412 }
403 .app-container { 413 .app-container {
404 min-height: 80vh; 414 min-height: 80vh;
405 } 415 }
......
...@@ -5,10 +5,15 @@ ...@@ -5,10 +5,15 @@
5 <el-form-item :label="language==0?'邮箱':'E-mail'" required> 5 <el-form-item :label="language==0?'邮箱':'E-mail'" required>
6 <el-input type="text" v-model="form.account" @change="resetCode" @blur="verifyCode" 6 <el-input type="text" v-model="form.account" @change="resetCode" @blur="verifyCode"
7 /> 7 />
8 <div class="tip"> 8 <div class="tip" v-if="language==0">
9 (请填写正确的邮箱信息,邮箱信息在注册完成后无法修改。 9 (请填写正确的邮箱信息,邮箱信息在注册完成后无法修改。
10 该邮箱后续会会作为您登录的账户,并接收您报名审核、支付账单、比赛邀请函等。) 10 该邮箱后续会会作为您登录的账户,并接收您报名审核、支付账单、比赛邀请函等。)
11 </div> 11 </div>
12 <div v-else class="tip">
13 Please fill in a correct mailbox information, which cannot be modified after registration.
14 The mailbox will receive your registration review, payment of bills, competition invitation and so
15 on.
16 </div>
12 </el-form-item> 17 </el-form-item>
13 <el-form-item :label="language==0?'验证码':'Code'" required> 18 <el-form-item :label="language==0?'验证码':'Code'" required>
14 <el-input v-model="form.code"> 19 <el-input v-model="form.code">
...@@ -143,4 +148,5 @@ const next = () => { ...@@ -143,4 +148,5 @@ const next = () => {
143 .vcodeBox{ position: relative;margin: 20px 0 0; 148 .vcodeBox{ position: relative;margin: 20px 0 0;
144 width: 320px;overflow: hidden; 149 width: 320px;overflow: hidden;
145 height: auto;} 150 height: auto;}
151 .tip{line-height: 1.6;margin-top: 10px;}
146 </style> 152 </style>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 </el-form-item> 16 </el-form-item>
17 <el-form-item :label="language==0?'确认密码':'Confirm Password'" required> 17 <el-form-item :label="language==0?'确认密码':'Confirm Password'" required>
18 <el-input type="password" show-password v-model="form.confirmPassword" @blur="vconfirmPassword" 18 <el-input type="password" show-password v-model="form.confirmPassword" @blur="vconfirmPassword"
19 placeholder="再次输入密码"/> 19 :placeholder="language==0?'再次输入密码':''"/>
20 </el-form-item> 20 </el-form-item>
21 </el-form> 21 </el-form>
22 </div> 22 </div>
...@@ -179,7 +179,10 @@ const goStep3 = () => { ...@@ -179,7 +179,10 @@ const goStep3 = () => {
179 form.value.username= props.accont 179 form.value.username= props.accont
180 match.pcRegisterTeam(form.value).then(res => { 180 match.pcRegisterTeam(form.value).then(res => {
181 setToken(res.data.token) 181 setToken(res.data.token)
182 loading.value = false
182 emit('submit') 183 emit('submit')
184 }).catch(()=>{
185 loading.value = false
183 }) 186 })
184 } 187 }
185 }) 188 })
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!