|
|
@@ -110,7 +110,7 @@
|
|
|
header-align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
+ <af-table-column
|
|
|
v-for="(item, index) in compTableSet(tableSet)"
|
|
|
:width="item.width"
|
|
|
:label="item.label"
|
|
|
@@ -125,9 +125,14 @@
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div class="imgboxsq" v-if="item.scope === 'img'">
|
|
|
- <img style="height: 60px; width: 60px" v-if="!scope.row[item.prop]" src="@/assets/404_images/wuyuxaog.png" alt="">
|
|
|
+ <img
|
|
|
+ style="height: 60px; width: 60px"
|
|
|
+ v-if="!scope.row[item.prop]"
|
|
|
+ src="@/assets/404_images/wuyuxaog.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
<el-image
|
|
|
- v-else
|
|
|
+ v-else
|
|
|
class="el_images"
|
|
|
lazy
|
|
|
:src="$methodsTools.splitImgHost(scope.row[item.prop])"
|
|
|
@@ -268,7 +273,7 @@
|
|
|
<ul v-else-if="item.scope === 'mapTypesTeacher'" class="ulAuto">
|
|
|
<template v-for="(itm, inds) in scope.row[item.prop]">
|
|
|
<li :key="inds" v-if="inds < 2">
|
|
|
- {{ itm.educationName + "-" + itm.projectName
|
|
|
+ {{ `${itm.educationName}-${itm.projectName}`
|
|
|
}}{{ inds === 0 ? ", " : "" }}
|
|
|
</li>
|
|
|
</template>
|
|
|
@@ -1052,9 +1057,7 @@
|
|
|
>
|
|
|
{{ getSimpleText(scope.row[item.prop]) }}
|
|
|
</div>
|
|
|
- <div
|
|
|
- v-else-if="item.scope === 'editInfoHTMLs'"
|
|
|
- >
|
|
|
+ <div v-else-if="item.scope === 'editInfoHTMLs'">
|
|
|
{{ getSimpleText(scope.row[item.prop]) }}
|
|
|
</div>
|
|
|
<span v-else-if="item.scope === 'minute'">{{
|
|
|
@@ -1079,7 +1082,7 @@
|
|
|
<span v-else-if="item.scope === 'classTypes'">
|
|
|
{{
|
|
|
scope.row[item.prop] === 1
|
|
|
- ? "已开班:" + scope.row[item.prop1]
|
|
|
+ ? `已开班:${scope.row[item.prop1]}`
|
|
|
: scope.row[item.prop] === 0
|
|
|
? "未开班"
|
|
|
: ""
|
|
|
@@ -1215,7 +1218,7 @@
|
|
|
}}</span
|
|
|
>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </af-table-column>
|
|
|
|
|
|
<el-table-column
|
|
|
label="官方信息推送状态"
|
|
|
@@ -2399,6 +2402,9 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less">
|
|
|
+.el-table .cell.el-tooltip{
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
.max-heightStyles {
|
|
|
max-height: 500px;
|
|
|
overflow-y: auto;
|
|
|
@@ -2546,12 +2552,18 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
+ & > ul {
|
|
|
+ margin: 0px;
|
|
|
+ }
|
|
|
}
|
|
|
.ulAutos {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
}
|
|
|
+.el-popover > ul {
|
|
|
+ margin: 0px;
|
|
|
+}
|
|
|
.dis_sdt {
|
|
|
display: flex;
|
|
|
align-items: flex-end;
|