df7a4ef6 by zhangmeng

日期和logo替换

1 parent 92cff72f
......@@ -122,7 +122,7 @@
>
<div class="flexBetween w100">
<div class="l">
{{ c.code }}:{{ c.name }}({{ c.danceType }})
{{ c.code }}:{{ c.name }}({{ c.danceType }}) <span class="tagText" >{{tageLabel(c.mtype)}}</span>
<div v-if="c.danceType=='Breaking'">--</div>
<div v-else>{{ c.danceTypeDetailStr }}</div>
</div>
......@@ -350,6 +350,11 @@ onMounted(() => {
// openTour.value = true
})
function tageLabel(type){
if (type==='0') return '名次赛'
if (type==='1') return '等级赛'
}
function getAthletesList() {
// athletesList.value
match.getGroupPersonList({ label: '0' }, groupId.value).then(res => {
......@@ -601,6 +606,7 @@ function getProjectList() {
}
match.getProjectPageByPerIds(obj).then(res => {
projectList.value = res.rows
console.log(3333,projectList.value)
loadingProject.value = false
}).catch(err => {
loadingProject.value = false
......@@ -1259,4 +1265,12 @@ function checkedChange(v) {
}
}
}
.tagText{
color: #453DEA;
border: 1px solid #453DEA;
padding: 2px 6px ;
border-radius: 5px;
font-size: 14px;
}
</style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!