|
@@ -147,9 +147,21 @@
|
|
|
<div>{{scope.row.existVipCourse?'是':'否'}}</div>
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
- <el-table-column align="center"
|
|
|
- prop
|
|
|
- label="预期安排">
|
|
|
+ <el-table-column align="center">
|
|
|
+ <template slot="header"
|
|
|
+ slot-scope="scope">
|
|
|
+ 预期安排
|
|
|
+ <el-tooltip placement="top"
|
|
|
+ popper-class="mTooltip">
|
|
|
+ <div slot="content">
|
|
|
+ 以周为单位,实际发生一次课外训练或网管课作业布置,记一次,一周只统计一次
|
|
|
+ </div>
|
|
|
+ <img :src="imageIcon"
|
|
|
+ class="micon el-tooltip"
|
|
|
+ style="width:8px height:8px"
|
|
|
+ alt />
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{scope.row.expectExercisesNum+'次'}}</div>
|
|
|
</template>
|
|
@@ -246,7 +258,6 @@ export default {
|
|
|
teacherId: null,
|
|
|
existVipCourse: null,
|
|
|
existPracticeCourse: null,
|
|
|
-
|
|
|
},
|
|
|
organList: [],
|
|
|
teacherList: [],
|
|
@@ -256,7 +267,8 @@ export default {
|
|
|
page: 1, // 当前页
|
|
|
total: 0, // 总条数
|
|
|
page_size: [10, 20, 40, 50] // 选择限制显示条数
|
|
|
- }
|
|
|
+ },
|
|
|
+ imageIcon: require("@/assets/images/base/warning.png"),
|
|
|
};
|
|
|
},
|
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
@@ -499,4 +511,9 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang='scss' scoped>
|
|
|
+.micon {
|
|
|
+ position: absolute;
|
|
|
+ top: 3px;
|
|
|
+ right: 20px;
|
|
|
+}
|
|
|
</style>
|