|
@@ -55,20 +55,22 @@
|
|
|
<span v-else-if="scope.row.supplementary == 1" size="small" type="info">是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="学习状态" align="center" prop="learnState" width="120" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="学习状态" align="center" prop="learnState" width="100" :show-overflow-tooltip="true">
|
|
|
<template v-slot="scope">
|
|
|
<el-tag v-if="scope.row.learnState == 1" size="small" type="success">已完成</el-tag>
|
|
|
<el-tag v-else-if="scope.row.learnState == 0" size="small" type="info">未完成</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="考试状态" align="center" prop="examState" width="120" :show-overflow-tooltip="true">
|
|
|
+
|
|
|
+ <el-table-column label="需学习时长min" align="center" prop="trainingbcc.timerNeed" width="120" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="已学习时长min" align="center" prop="learnTime" width="120" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="考试状态" align="center" prop="examState" width="100" :show-overflow-tooltip="true">
|
|
|
<template v-slot="scope">
|
|
|
<el-tag v-if="scope.row.examState == 1" size="small" type="success">合格</el-tag>
|
|
|
<el-tag v-else-if="scope.row.examState == 0" size="small" type="info">未完成</el-tag>
|
|
|
<el-tag v-else-if="scope.row.examState == -1" size="small" type="danger">不合格</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="学习时长min" align="center" prop="learnTime" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
|
<template v-if="scope.row.isLock != 1" slot-scope="scope">
|
|
|
<el-button
|