|
@@ -72,6 +72,11 @@
|
|
|
label="题卡名称"
|
|
|
min-width="120"
|
|
|
></el-table-column>
|
|
|
+ <el-table-column label="课程(代码)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.courseName }}({{ scope.row.courseCode }})
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="type" label="类型" width="100">
|
|
|
<span slot-scope="scope">{{ scope.row.type | cardTypeFilter }}</span>
|
|
|
</el-table-column>
|
|
@@ -297,6 +302,7 @@ export default {
|
|
|
type: row.type,
|
|
|
createMethod: row.createMethod,
|
|
|
remark: row.remark,
|
|
|
+ courseCode: row.courseCode,
|
|
|
cardRuleId: row.cardRuleId,
|
|
|
attachmentId: row.attachmentId,
|
|
|
});
|