df7a4ef6 by zhangmeng

日期和logo替换

1 parent 92cff72f
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
122 > 122 >
123 <div class="flexBetween w100"> 123 <div class="flexBetween w100">
124 <div class="l"> 124 <div class="l">
125 {{ c.code }}:{{ c.name }}({{ c.danceType }}) 125 {{ c.code }}:{{ c.name }}({{ c.danceType }}) <span class="tagText" >{{tageLabel(c.mtype)}}</span>
126 <div v-if="c.danceType=='Breaking'">--</div> 126 <div v-if="c.danceType=='Breaking'">--</div>
127 <div v-else>{{ c.danceTypeDetailStr }}</div> 127 <div v-else>{{ c.danceTypeDetailStr }}</div>
128 </div> 128 </div>
...@@ -350,6 +350,11 @@ onMounted(() => { ...@@ -350,6 +350,11 @@ onMounted(() => {
350 // openTour.value = true 350 // openTour.value = true
351 }) 351 })
352 352
353 function tageLabel(type){
354 if (type==='0') return '名次赛'
355 if (type==='1') return '等级赛'
356 }
357
353 function getAthletesList() { 358 function getAthletesList() {
354 // athletesList.value 359 // athletesList.value
355 match.getGroupPersonList({ label: '0' }, groupId.value).then(res => { 360 match.getGroupPersonList({ label: '0' }, groupId.value).then(res => {
...@@ -601,6 +606,7 @@ function getProjectList() { ...@@ -601,6 +606,7 @@ function getProjectList() {
601 } 606 }
602 match.getProjectPageByPerIds(obj).then(res => { 607 match.getProjectPageByPerIds(obj).then(res => {
603 projectList.value = res.rows 608 projectList.value = res.rows
609 console.log(3333,projectList.value)
604 loadingProject.value = false 610 loadingProject.value = false
605 }).catch(err => { 611 }).catch(err => {
606 loadingProject.value = false 612 loadingProject.value = false
...@@ -1259,4 +1265,12 @@ function checkedChange(v) { ...@@ -1259,4 +1265,12 @@ function checkedChange(v) {
1259 } 1265 }
1260 } 1266 }
1261 } 1267 }
1268
1269 .tagText{
1270 color: #453DEA;
1271 border: 1px solid #453DEA;
1272 padding: 2px 6px ;
1273 border-radius: 5px;
1274 font-size: 14px;
1275 }
1262 </style> 1276 </style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!