|
@@ -30,7 +30,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="操作" width="250">
|
|
|
<template #default="{ row }">
|
|
|
- <el-link v-if="row.form == '4'" :underline="false" type="primary" @click="toPreliminary(row)" style="margin-right: 10px">初赛报名名单</el-link>
|
|
|
+ <!-- <el-link v-if="row.form == '4'" :underline="false" type="primary" @click="toPreliminary(row)" style="margin-right: 10px">报名名单</el-link> -->
|
|
|
<el-link v-if="row.status == '-2'" :underline="false" type="warning" @click="toExam(row)" style="margin-right: 10px">提交审核</el-link>
|
|
|
<el-link v-if="row.match_status == '2' && row.form != '4' && row.form != '3'" :underline="false" type="primary" @click="toScore(row)" style="margin-right: 10px"> 分数 </el-link>
|
|
|
<el-link v-if="row.form != '4'" :underline="false" type="warning" @click="toSign(row)" style="margin-right: 10px">报名</el-link>
|
|
@@ -523,10 +523,10 @@ const toScore = (data) => {
|
|
|
form.value = data
|
|
|
dialog.value = { type: '4', show: true, title: '分数管理' }
|
|
|
}
|
|
|
-// 查看初赛信息
|
|
|
+// 查看初审信息
|
|
|
const toPreliminary = (data) => {
|
|
|
form.value = data
|
|
|
- dialog.value = { type: '5', show: true, title: '初赛信息' }
|
|
|
+ dialog.value = { type: '5', show: true, title: '报名信息' }
|
|
|
}
|
|
|
// 赛事设置
|
|
|
const toExtOne = (data) => {
|
|
@@ -628,9 +628,18 @@ const toExam = async (row) => {
|
|
|
// 修改赛事状态
|
|
|
const toMatchSave = async (row) => {
|
|
|
const data = cloneDeep(row)
|
|
|
- let res = await store.update({ id: data.id, match_status: data.match_status })
|
|
|
- if ($checkRes(res, true)) {
|
|
|
- toClose()
|
|
|
+ console.log(data)
|
|
|
+
|
|
|
+ if (data.form == '4' && data.match_status == '2') {
|
|
|
+ const res = await store.step1({ match_id: data.id })
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
+ toClose()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ const res = await store.update({ id: data.id, match_status: data.match_status })
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
+ toClose()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
const toClose = async () => {
|