|
@@ -141,13 +141,16 @@
|
|
</el-card>
|
|
</el-card>
|
|
</div>
|
|
</div>
|
|
</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="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>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -180,7 +183,8 @@ const dictDataStore = DictDataStore()
|
|
const store = MatchStore()
|
|
const store = MatchStore()
|
|
const signStore = SignStore()
|
|
const signStore = SignStore()
|
|
const contactApplyStore = ContactApplyStore()
|
|
const contactApplyStore = ContactApplyStore()
|
|
-
|
|
|
|
|
|
+import { MatchExtStore } from '@/store/api/platform/matchExt'
|
|
|
|
+const matchExtStore = MatchExtStore()
|
|
// 收藏
|
|
// 收藏
|
|
import { CollectionStore } from '@/store/api/platform/collection'
|
|
import { CollectionStore } from '@/store/api/platform/collection'
|
|
const collectionStore = CollectionStore()
|
|
const collectionStore = CollectionStore()
|
|
@@ -262,16 +266,27 @@ const searchOther = async () => {
|
|
const search = async () => {
|
|
const search = async () => {
|
|
let id = route.query.id
|
|
let id = route.query.id
|
|
if (id) {
|
|
if (id) {
|
|
- let res = await store.detail(id)
|
|
|
|
|
|
+ let res = await store.fetch(id)
|
|
if (res.errcode == '0') {
|
|
if (res.errcode == '0') {
|
|
info.value = res.data
|
|
info.value = res.data
|
|
if (res.data.form == '3') {
|
|
if (res.data.form == '3') {
|
|
const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
|
|
const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
|
|
if (arr.errcode == '0') signList.value = arr.data
|
|
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) => {
|
|
const getDict = (data, model) => {
|
|
if (data) {
|
|
if (data) {
|
|
@@ -550,6 +565,28 @@ provide('submitForm', submitForm)
|
|
background-blend-mode: normal, normal;
|
|
background-blend-mode: normal, normal;
|
|
border-radius: 4px;
|
|
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 {
|
|
.list {
|
|
margin: 20px 0 30px 0;
|
|
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>
|
|
</style>
|