提交一下

This commit is contained in:
daihh
2023-01-09 17:54:36 +08:00
parent 2bc2140d31
commit ad8017db24

View File

@@ -180,19 +180,19 @@
{{scope.row.chapterName}}{{scope.row.chapterName? '--': ''}}{{scope.row.contentName}} {{scope.row.chapterName}}{{scope.row.chapterName? '--': ''}}{{scope.row.contentName}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="status" label="状态"> <!-- <el-table-column prop="status" label="状态">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.status == 9? '已完成':'未开始'}}</span> <span>{{scope.row.status == 9? '已完成':'未开始'}}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column prop="duration" label="时长(分)"> <el-table-column prop="duration" label="时长(分)">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.duration == 0?'0':scope.row.duration/60}} {{scope.row.duration == 0?'0':(scope.row.duration/60).toFixed(2)}}
</template> </template>
</el-table-column> --> </el-table-column>-->
<el-table-column label="操作" width="100"> <el-table-column label="学习人员" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="info" @click="getCatalogue(scope.row)" >详情</el-button> <el-button size="mini" type="info" @click="getCatalogue(scope.row)" >学习人员</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>