zs hace 2 meses
padre
commit
b55d7cf412
Se han modificado 2 ficheros con 31 adiciones y 0 borrados
  1. 5 0
      src/store/api/platform/matchExt.js
  2. 26 0
      src/views/detail/matchDetail.vue

+ 5 - 0
src/store/api/platform/matchExt.js

@@ -49,6 +49,10 @@ export const MatchExtStore = defineStore('matchExt', () => {
     const res = await axios.$post(`${url}/step5/refuse/${id}`, payload)
     return res
   }
+  const step5Name = async (payload) => {
+    const res = await axios.$get(`${url}/step5/list/${payload}`)
+    return res
+  }
   return {
     query,
     fetch,
@@ -58,6 +62,7 @@ export const MatchExtStore = defineStore('matchExt', () => {
     step3Name,
     step5Confirm,
     step5Refuse,
+    step5Name,
     del
   }
 })

+ 26 - 0
src/views/detail/matchDetail.vue

@@ -154,6 +154,19 @@
             </el-table>
           </div>
         </div>
+        <div class="info_3" v-if="info.form == '4' && info.ext_status == '5'">
+          <div class="title">决赛结果公示</div>
+          <div class="content_1" style="margin: 20px 0 0 0">
+            <el-table :data="finalsList" :header-cell-style="{ backgroundColor: '#edf3ff' }">
+              <template #empty>
+                <el-empty description="暂无数据" />
+              </template>
+              <el-table-column align="center" prop="no" label="编号" width="100" />
+              <el-table-column align="center" prop="user_name" label="姓名" />
+              <el-table-column align="center" prop="final_start_time" label="决赛时间" />
+            </el-table>
+          </div>
+        </div>
       </div>
     </el-col>
   </custom-layout>
@@ -209,6 +222,8 @@ const form = ref({})
 
 // 初审公示
 const preliminaryList = ref([])
+// 决赛公示
+const finalsList = ref([])
 
 const validatePhoneNumber = (rule, value, callback) => {
   const reg = /^1[3-9]\d{9}$/
@@ -276,6 +291,9 @@ const search = async () => {
       if (res.data.form == '4' && res.data.ext_status == '3') {
         await searchStep3()
       }
+      if (res.data.form == '4' && res.data.ext_status == '5') {
+        await searchStep5()
+      }
     }
   }
 }
@@ -287,6 +305,14 @@ const searchStep3 = async () => {
     preliminaryList.value = res.data
   }
 }
+// 查询决赛公示名单
+const searchStep5 = async () => {
+  let id = route.query.id
+  let res = await matchExtStore.step5Name(id)
+  if (res.errcode == '0') {
+    finalsList.value = res.data
+  }
+}
 // 字典数据转换
 const getDict = (data, model) => {
   if (data) {