|
@@ -121,9 +121,7 @@
|
|
|
width="55"
|
|
|
header-align="center"
|
|
|
fixed="left"
|
|
|
- :selectable="
|
|
|
- navText.selectableStatus ? navText.selectableFunc : null
|
|
|
- "
|
|
|
+ :selectable="navText.selectableStatus ? navText.selectableFunc : null"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<!-- v-if="navText.num" ↓ -->
|
|
@@ -674,12 +672,8 @@
|
|
|
>{{ scope.row[item.prop3] }}-{{ scope.row[item.prop4] }}</span
|
|
|
>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- 准考证号:{{ scope.row[item.prop5] }}
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- 座位号:{{ scope.row[item.prop6] }}
|
|
|
- </div>
|
|
|
+ <div>准考证号:{{ scope.row[item.prop5] }}</div>
|
|
|
+ <div>座位号:{{ scope.row[item.prop6] }}</div>
|
|
|
<div>
|
|
|
同步到考场状态:{{
|
|
|
scope.row[item.prop7] === 0
|
|
@@ -1433,7 +1427,13 @@
|
|
|
v-if="navText.xssbStatus"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.periodPlush ? "已上报" : "未上报" }}
|
|
|
+ <el-popover width="300" trigger="hover">
|
|
|
+ <p>学时推送结果:{{ scope.row.periodPlushMsg || "无" }}</p>
|
|
|
+ <p>官方信息推送结果:{{ scope.row.officialStatusMsg || "无" }}</p>
|
|
|
+ <el-button type="text" slot="reference">{{
|
|
|
+ scope.row.periodPlush ? "已上报" : "未上报"
|
|
|
+ }}</el-button>
|
|
|
+ </el-popover>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|