zs 2 hónapja
szülő
commit
937ab2a05c
1 módosított fájl, 3 hozzáadás és 17 törlés
  1. 3 17
      src/views/center/match.vue

+ 3 - 17
src/views/center/match.vue

@@ -523,11 +523,6 @@ 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: '报名信息' }
-}
 // 赛事设置
 const toExtOne = (data) => {
   form.value = data
@@ -628,18 +623,9 @@ const toExam = async (row) => {
 // 修改赛事状态
 const toMatchSave = async (row) => {
   const data = cloneDeep(row)
-  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 res = await store.update({ id: data.id, match_status: data.match_status })
+  if ($checkRes(res, true)) {
+    toClose()
   }
 }
 const toClose = async () => {