|
@@ -85,9 +85,21 @@
|
|
<table class="t-body">
|
|
<table class="t-body">
|
|
<tbody is="transition-group" name="el-zoom-in-top">
|
|
<tbody is="transition-group" name="el-zoom-in-top">
|
|
<tr v-for="t in LtableData" :key="t.id">
|
|
<tr v-for="t in LtableData" :key="t.id">
|
|
- <td style="width:20%;">{{t.name}}</td>
|
|
|
|
- <td style="width:20%;">{{t.name}}</td>
|
|
|
|
- <td style="width:30%;">{{t.address}}</td>
|
|
|
|
|
|
+ <td style="width:20%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
|
|
+ <td style="width:20%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
|
|
+ <td style="width:30%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
<td class="bgf5" style="width:200px;min-width:200px;">
|
|
<td class="bgf5" style="width:200px;min-width:200px;">
|
|
<el-tooltip :content="t.address" placement="top">
|
|
<el-tooltip :content="t.address" placement="top">
|
|
<span>{{t.address}}</span>
|
|
<span>{{t.address}}</span>
|
|
@@ -170,9 +182,21 @@
|
|
<span>{{t.date}}</span>
|
|
<span>{{t.date}}</span>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</td>
|
|
</td>
|
|
- <td style="width:20%;">{{t.address}}</td>
|
|
|
|
- <td style="width:20%;">{{t.address}}</td>
|
|
|
|
- <td style="width:30%;">{{t.address}}</td>
|
|
|
|
|
|
+ <td style="width:20%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
|
|
+ <td style="width:20%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
|
|
+ <td style="width:30%;">
|
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
|
+ <span>{{t.address}}</span>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </td>
|
|
</tr>
|
|
</tr>
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
@@ -400,7 +424,8 @@ export default {
|
|
hasRequestedFlag: false, //用于标识是否关联过数据,若是则重新请求第一页数据,
|
|
hasRequestedFlag: false, //用于标识是否关联过数据,若是则重新请求第一页数据,
|
|
showPlus: false, //+1记录动画
|
|
showPlus: false, //+1记录动画
|
|
num: 0, //记录条数
|
|
num: 0, //记录条数
|
|
- timer: null,
|
|
|
|
|
|
+ timer: null, //函数节流 延时器
|
|
|
|
+ historyList: [] //操作历史
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {},
|
|
created() {},
|
|
@@ -470,24 +495,28 @@ export default {
|
|
},
|
|
},
|
|
//查看本次历史记录
|
|
//查看本次历史记录
|
|
showHistory() {
|
|
showHistory() {
|
|
- this.$refs.history.showDialog();
|
|
|
|
|
|
+ this.$refs.history.showDialog(this.historyList);
|
|
},
|
|
},
|
|
//隐藏 动画
|
|
//隐藏 动画
|
|
animate() {
|
|
animate() {
|
|
- //前端真删
|
|
|
|
|
|
+ //前端真删,但是要将数据存到historyList中,弹窗中使用
|
|
//两侧
|
|
//两侧
|
|
|
|
+ let history = { leftList: [], rightList: [] };
|
|
for (let j = 0; j < this.LtableData.length; j++) {
|
|
for (let j = 0; j < this.LtableData.length; j++) {
|
|
if (this.LtableData[j].checked) {
|
|
if (this.LtableData[j].checked) {
|
|
- this.LtableData.splice(j, 1);
|
|
|
|
|
|
+ let temp = this.LtableData.splice(j, 1);
|
|
|
|
+ history.leftList.push(temp[0]);
|
|
j--;
|
|
j--;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (let i = 0; i < this.RtableData.length; i++) {
|
|
for (let i = 0; i < this.RtableData.length; i++) {
|
|
if (this.RtableData[i].checked) {
|
|
if (this.RtableData[i].checked) {
|
|
- this.RtableData.splice(i, 1);
|
|
|
|
|
|
+ let temp = this.RtableData.splice(i, 1);
|
|
|
|
+ history.rightList.push(temp[0]);
|
|
i--;
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ this.historyList.push(history);
|
|
this.lArray = [];
|
|
this.lArray = [];
|
|
this.rArray = [];
|
|
this.rArray = [];
|
|
this.num++;
|
|
this.num++;
|
|
@@ -525,7 +554,7 @@ export default {
|
|
//上->此赋值操作与 后台返回的值 异步问题
|
|
//上->此赋值操作与 后台返回的值 异步问题
|
|
clearTimeout(this.timer);
|
|
clearTimeout(this.timer);
|
|
this.timer = setTimeout(() => {
|
|
this.timer = setTimeout(() => {
|
|
- console.log('函数节流')
|
|
|
|
|
|
+ console.log("函数节流");
|
|
if (n.length > 0) {
|
|
if (n.length > 0) {
|
|
this.leftAI = false;
|
|
this.leftAI = false;
|
|
this.rightRecoList = [
|
|
this.rightRecoList = [
|
|
@@ -565,7 +594,7 @@ export default {
|
|
this.leftRecoList = [];
|
|
this.leftRecoList = [];
|
|
clearTimeout(this.timer);
|
|
clearTimeout(this.timer);
|
|
this.timer = setTimeout(() => {
|
|
this.timer = setTimeout(() => {
|
|
- console.log('函数节流')
|
|
|
|
|
|
+ console.log("函数节流");
|
|
if (n.length > 0) {
|
|
if (n.length > 0) {
|
|
this.leftAI = true;
|
|
this.leftAI = true;
|
|
this.leftRecoList = [
|
|
this.leftRecoList = [
|
|
@@ -598,7 +627,7 @@ export default {
|
|
this.leftRecoList = [];
|
|
this.leftRecoList = [];
|
|
this.leftAI = false;
|
|
this.leftAI = false;
|
|
}
|
|
}
|
|
- },800)
|
|
|
|
|
|
+ }, 800);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|