|
@@ -154,7 +154,7 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="info_3" v-if="info.form == '4' && info.ext_status == '5'">
|
|
|
+ <div class="info_3" v-if="info.form == '4' && info.ext_status == '6'">
|
|
|
<div class="title">决赛结果公示</div>
|
|
|
<div class="content_1" style="margin: 20px 0 0 0">
|
|
|
<el-table :data="finalsList" :header-cell-style="{ backgroundColor: '#edf3ff' }">
|
|
@@ -163,6 +163,7 @@
|
|
|
</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-column align="center" prop="final_start_time" label="决赛时间" />
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -291,7 +292,7 @@ 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') {
|
|
|
+ if (res.data.form == '4' && res.data.ext_status == '6') {
|
|
|
await searchStep5()
|
|
|
}
|
|
|
}
|
|
@@ -308,7 +309,11 @@ const searchStep3 = async () => {
|
|
|
// 查询决赛公示名单
|
|
|
const searchStep5 = async () => {
|
|
|
let id = route.query.id
|
|
|
- let res = await matchExtStore.step5Name(id)
|
|
|
+ const data = {
|
|
|
+ match_id: id,
|
|
|
+ final_confirm: '0'
|
|
|
+ }
|
|
|
+ let res = await matchExtStore.step5Name(data)
|
|
|
if (res.errcode == '0') {
|
|
|
finalsList.value = res.data
|
|
|
}
|