zs 3 mēneši atpakaļ
vecāks
revīzija
8f9af07d3b
2 mainītis faili ar 50 papildinājumiem un 30 dzēšanām
  1. 5 0
      src/store/api/platform/matchExt.js
  2. 45 30
      src/views/detail/matchDetail.vue

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

@@ -35,12 +35,17 @@ export const MatchExtStore = defineStore('matchExt', () => {
     const res = await axios.$post(`${url}/firstStep/${id}`, payload)
     return res
   }
+  const step3Name = async (payload) => {
+    const res = await axios.$get(`${url}/step3/nameList/${payload}`)
+    return res
+  }
   return {
     query,
     fetch,
     create,
     update,
     firstStep,
+    step3Name,
     del
   }
 })

+ 45 - 30
src/views/detail/matchDetail.vue

@@ -141,13 +141,16 @@
             </el-card>
           </div>
         </div>
-        <div class="info_3" v-if="info.form == '4'">
+        <div class="info_3" v-if="info.form == '4' && info.ext_status == '3'">
           <div class="title">初审结果公示</div>
-          <div class="content" style="margin: 20px 0 0 0">
-            <el-table :data="preliminaryList" stripe style="width: 100%">
-              <el-table-column align="center" prop="name" label="姓名" />
-              <el-table-column align="center" prop="project" label="项目名称" />
-              <el-table-column align="center" prop="time" label="时间" />
+          <div class="content_1" style="margin: 20px 0 0 0">
+            <el-table :data="preliminaryList" :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="start_time" label="初审时间" />
             </el-table>
           </div>
         </div>
@@ -180,7 +183,8 @@ const dictDataStore = DictDataStore()
 const store = MatchStore()
 const signStore = SignStore()
 const contactApplyStore = ContactApplyStore()
-
+import { MatchExtStore } from '@/store/api/platform/matchExt'
+const matchExtStore = MatchExtStore()
 // 收藏
 import { CollectionStore } from '@/store/api/platform/collection'
 const collectionStore = CollectionStore()
@@ -262,16 +266,27 @@ const searchOther = async () => {
 const search = async () => {
   let id = route.query.id
   if (id) {
-    let res = await store.detail(id)
+    let res = await store.fetch(id)
     if (res.errcode == '0') {
       info.value = res.data
       if (res.data.form == '3') {
         const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
         if (arr.errcode == '0') signList.value = arr.data
       }
+      if (res.data.form == '4' && res.data.ext_status == '3') {
+        await searchStep3()
+      }
     }
   }
 }
+// 查询初审公示名单
+const searchStep3 = async () => {
+  let id = route.query.id
+  let res = await matchExtStore.step3Name(id)
+  if (res.errcode == '0') {
+    preliminaryList.value = res.data
+  }
+}
 // 字典数据转换
 const getDict = (data, model) => {
   if (data) {
@@ -550,6 +565,28 @@ provide('submitForm', submitForm)
           background-blend-mode: normal, normal;
           border-radius: 4px;
         }
+        :deep(table) {
+          border-collapse: collapse !important;
+          width: 100% !important;
+          text-align: center !important;
+        }
+
+        :deep(th) {
+          border: 1px solid #ddd !important;
+          padding: 8px !important;
+        }
+
+        :deep(td) {
+          border: 1px solid #ddd !important;
+          padding: 8px !important;
+        }
+        :deep(table tr:nth-child(even)) {
+          background-color: #f2f2f2 !important;
+        }
+
+        :deep(table tr:hover) {
+          background-color: #ddd !important;
+        }
       }
       .list {
         margin: 20px 0 30px 0;
@@ -572,27 +609,5 @@ provide('submitForm', submitForm)
       }
     }
   }
-  :deep(table) {
-    border-collapse: collapse !important;
-    width: 100% !important;
-    text-align: center !important;
-  }
-
-  :deep(th) {
-    border: 1px solid #ddd !important;
-    padding: 8px !important;
-  }
-
-  :deep(td) {
-    border: 1px solid #ddd !important;
-    padding: 8px !important;
-  }
-  :deep(table tr:nth-child(even)) {
-    background-color: #f2f2f2 !important;
-  }
-
-  :deep(table tr:hover) {
-    background-color: #ddd !important;
-  }
 }
 </style>