|
@@ -195,13 +195,15 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="是否被合并">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div>
|
|
|
- {{ scope.row.courseSchedule.newCourseId > 0 ? '是' : '否' }}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column align="center" label="合并类型">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <!-- {{ scope.row.courseSchedule.newCourseId > 0 ? '是' : '否' }} -->
|
|
|
+ {{ scope.row.newCourseId > 0 && scope.row.newCourseId == scope.row.courseScheduleId ? '合并课' : null }}
|
|
|
+ {{ scope.row.newCourseId > 0 && scope.row.newCourseId != scope.row.courseScheduleId ? '被合并课' : null }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" label="签到时间" width="180px">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|