|
@@ -105,7 +105,7 @@
|
|
|
prop="name"
|
|
|
label="课程名称">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-tooltip placement="top-start">
|
|
|
+ <el-tooltip placement="top-start" style=" display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical;">
|
|
|
<div slot="content">{{ scope.row.name }}</div>
|
|
|
<span>{{ scope.row.name }}</span>
|
|
|
</el-tooltip>
|
|
@@ -359,7 +359,7 @@ export default {
|
|
|
params.status = this.searchForm.status || null;
|
|
|
getVipList(params).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
- this.tableData = [];
|
|
|
+ // this.tableData = [];
|
|
|
setTimeout(() => {
|
|
|
this.tableData = res.data.rows;
|
|
|
}, 50);
|
|
@@ -588,11 +588,4 @@ export default {
|
|
|
.newBand {
|
|
|
display: inline-block;
|
|
|
}
|
|
|
-/deep/.el-table .cell {
|
|
|
- display: -webkit-box;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- -webkit-line-clamp: 3;
|
|
|
- -webkit-box-orient: vertical;
|
|
|
-}
|
|
|
</style>
|