修复状态会跳动bug

UI_2022-02-10
yujialong 3 years ago
parent 507571b5d4
commit 11cb2d744a
  1. 6
      src/pages/ass/list/index.vue

@ -87,12 +87,12 @@
</template>
</el-table-column>
<el-table-column label="实验状态" align="center">
<template slot-scope="scope">
<template slot-scope="scope" v-if="scope.row.show">
<span class="ellipsis">{{ stuState[scope.row.stuState] }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<template slot-scope="scope" v-if="scope.row.show">
<!--status:考核状态(0待开始 1进行中 2已结束); stuState:学生考试状态(0未考 1在考 2已考)-->
<el-button v-if="scope.row.status === 2 && scope.row.stuState === 0" type="text" disabled>未参加</el-button>
<el-button v-if="scope.row.status !== 2 && (scope.row.stuState === 0 || scope.row.stuState === 1)" type="text"
@ -260,6 +260,7 @@ export default {
item.status = 2;
}
}
item.show = true;
this.$set(this.listData, i, item);
}
}, 1000);
@ -277,6 +278,7 @@ export default {
this.listData = res.list;
this.totals = res.total;
this.listData.forEach(i => {
i.show = false;
if (i.status === 2) { //
i.countDown = 0;
} else {

Loading…
Cancel
Save