|
@@ -64,66 +64,37 @@
|
|
|
</div>
|
|
|
<!-- 左侧列表 -->
|
|
|
<div class="table-box">
|
|
|
- <div style="height:100%">
|
|
|
+ <div class="l-custom-table custom-table">
|
|
|
<div class="t-head">
|
|
|
- <tr style="line-height:38px;">
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:20%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >设备实例名称</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:20%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >设备实例编码</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:30%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >所在业务空间</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:200px;min-width:200px;background-color:#f5f7fa;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >所在建筑楼层</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:30px;min-width:30px;box-sizing:border-box;background-color:#f5f7fa;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- ></td>
|
|
|
+ <tr>
|
|
|
+ <td style="width:20%;">设备实例名称</td>
|
|
|
+ <td style="width:20%;">设备实例编码</td>
|
|
|
+ <td style="width:30%;">所在业务空间</td>
|
|
|
+ <td class="bgf5" style="width:200px;min-width:200px;">所在建筑楼层</td>
|
|
|
+ <td class="bgf5 special" style="width:30px;min-width:30px;"></td>
|
|
|
</tr>
|
|
|
</div>
|
|
|
- <div class="t-body" style="overflow-y:auto;height:calc(100% - 39px);">
|
|
|
+ <div class="t-body" ref="lTableBody">
|
|
|
<div>
|
|
|
<div v-for="(t,i) in LtableData" :key="t.id">
|
|
|
<transition name="el-zoom-in-top">
|
|
|
- <tr v-show="t.show" style="line-height:38px;">
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:20%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.name}}</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:20%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.name}}</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:30%;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.address}}</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:200px;min-width:200px;background-color:#f5f7fa;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >
|
|
|
- <el-tooltip
|
|
|
- class="item"
|
|
|
- effect="dark"
|
|
|
- :content="t.date"
|
|
|
- placement="top-start"
|
|
|
- >
|
|
|
- <span>{{t.date}}</span>
|
|
|
+ <tr v-show="t.show">
|
|
|
+ <td style="width:20%;">
|
|
|
+ <p>{{t.name}}</p>
|
|
|
+ </td>
|
|
|
+ <td style="width:20%;">
|
|
|
+ <p>{{t.name}}</p>
|
|
|
+ </td>
|
|
|
+ <td style="width:30%;">
|
|
|
+ <p>{{t.address}}</p>
|
|
|
+ </td>
|
|
|
+ <td class="bgf5" style="width:200px;min-width:200px;">
|
|
|
+ <el-tooltip :content="t.address" placement="top">
|
|
|
+ <span>{{t.address}}</span>
|
|
|
</el-tooltip>
|
|
|
</td>
|
|
|
- <td
|
|
|
- class="tr"
|
|
|
- style="width:30px;min-width:30px;box-sizing:border-box;background-color:#f5f7fa;padding-right:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >
|
|
|
- <el-checkbox v-model="t.checked" @change="changeCheck(i,'r')"></el-checkbox>
|
|
|
+ <td class="bgf5 special" style="width:30px;min-width:30px;">
|
|
|
+ <el-checkbox v-model="t.checked" @change="changeCheck(t.id,'l')"></el-checkbox>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</transition>
|
|
@@ -146,7 +117,7 @@
|
|
|
>
|
|
|
<p>
|
|
|
<el-checkbox v-model="t.checked"></el-checkbox>
|
|
|
- <span @click="clearData">{{t.name2}}</span>
|
|
|
+ <span>{{t.name2}}</span>
|
|
|
</p>
|
|
|
<p>{{t.name}}</p>
|
|
|
<p>{{t.date}}</p>
|
|
@@ -174,72 +145,71 @@
|
|
|
</div>
|
|
|
<!-- 右侧列表 -->
|
|
|
<div class="table-box">
|
|
|
- <div style="height:100%">
|
|
|
+ <!-- <div class="r-custom-table custom-table">
|
|
|
<div class="t-head">
|
|
|
- <tr style="line-height:38px;">
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:30px;min-width:30px;box-sizing:border-box;background-color:#f5f7fa;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- ></td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:200px;min-width:200px;background-color:#f5f7fa;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >设备实例名称</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:20%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >设备实例编码</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:20%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >所在业务空间</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:30%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >所在建筑楼层</td>
|
|
|
+ <tr>
|
|
|
+ <td class="bgf5 special" style="width:30px;min-width:30px;"></td>
|
|
|
+ <td class="bgf5" style="width:200px;min-width:200px;">设备实例名称</td>
|
|
|
+ <td style="width:20%;">设备实例编码</td>
|
|
|
+ <td style="width:20%;">所在业务空间</td>
|
|
|
+ <td style="width:30%;">所在建筑楼层</td>
|
|
|
</tr>
|
|
|
</div>
|
|
|
- <div class="t-body" style="overflow-y:auto;height:calc(100% - 39px);">
|
|
|
+ <div class="t-body" ref="rTableBody">
|
|
|
<div>
|
|
|
<div v-for="(t,i) in RtableData" :key="t.id">
|
|
|
<transition name="el-zoom-in-top">
|
|
|
- <tr v-show="t.show" style="line-height:38px;">
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:30px;min-width:30px;box-sizing:border-box;background-color:#f5f7fa;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >
|
|
|
- <el-checkbox v-model="t.checked" @change="changeCheck(i,'r')"></el-checkbox>
|
|
|
+ <tr v-show="t.show">
|
|
|
+ <td class="bgf5 special" style="width:30px;min-width:30px;">
|
|
|
+ <el-checkbox v-model="t.checked" @change="changeCheck(t.id,'r')"></el-checkbox>
|
|
|
</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:200px;min-width:200px;background-color:#f5f7fa;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >
|
|
|
- <el-tooltip
|
|
|
- class="item"
|
|
|
- effect="dark"
|
|
|
- :content="t.date"
|
|
|
- placement="top-start"
|
|
|
- >
|
|
|
+ <td class="bgf5" style="width:200px;min-width:200px;">
|
|
|
+ <el-tooltip :content="t.date" placement="top">
|
|
|
<span>{{t.date}}</span>
|
|
|
</el-tooltip>
|
|
|
</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:20%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.name}}</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:20%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.name}}</td>
|
|
|
- <td
|
|
|
- class="tl"
|
|
|
- style="width:30%;padding-left:10px;border-bottom: 1px solid #EBEEF5;"
|
|
|
- >{{t.address}}</td>
|
|
|
+ <td style="width:20%;">
|
|
|
+ <p>{{t.address}}</p>
|
|
|
+ </td>
|
|
|
+ <td style="width:20%;">
|
|
|
+ <p>{{t.address}}</p>
|
|
|
+ </td>
|
|
|
+ <td style="width:30%;">
|
|
|
+ <p>{{t.address}}</p>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
</transition>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ </div>-->
|
|
|
+ <div class="r-custom-table custom-table">
|
|
|
+ <table style="table-layout: fixed;width:100%;">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <td class="bgf5" style="width:30px;min-width:30px;"></td>
|
|
|
+ <td class="bgf5" style="width:200px;min-width:200px;">设备实例名称</td>
|
|
|
+ <td style="width:20%;">设备实例编码</td>
|
|
|
+ <td style="width:20%;">所在业务空间</td>
|
|
|
+ <td style="width:30%;">所在建筑楼层</td>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody is="transition-group">
|
|
|
+ <tr v-for="t in RtableData" :key="t.id">
|
|
|
+ <td class="bgf5">
|
|
|
+ <el-checkbox v-model="t.checked" @change="changeCheck(t.id,'r')"></el-checkbox>
|
|
|
+ </td>
|
|
|
+ <td class="bgf5">
|
|
|
+ <el-tooltip :content="t.date" placement="top">
|
|
|
+ <span>{{t.date}}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </td>
|
|
|
+ <td>{{t.address}}</td>
|
|
|
+ <td>{{t.address}}</td>
|
|
|
+ <td>{{t.address}}</td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
<!-- 智能推荐 -->
|
|
|
<transition name="el-zoom-in-top">
|
|
@@ -321,6 +291,7 @@ export default {
|
|
|
], //
|
|
|
LtableData: [
|
|
|
{
|
|
|
+ id: 1,
|
|
|
date: "2016-05-02",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -328,6 +299,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 2,
|
|
|
date: "2016-05-04",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -335,6 +307,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 3,
|
|
|
date: "2016-05-01",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -342,6 +315,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 4,
|
|
|
date: "2016-05-02",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -349,6 +323,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 5,
|
|
|
date: "2016-05-04",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -356,6 +331,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 6,
|
|
|
date: "2016-05-01",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -363,6 +339,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 7,
|
|
|
date: "2016-05-08",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -370,6 +347,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 8,
|
|
|
date: "2016-05-06",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -377,6 +355,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 9,
|
|
|
date: "2016-05-07",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -386,6 +365,7 @@ export default {
|
|
|
], //列表数据
|
|
|
RtableData: [
|
|
|
{
|
|
|
+ id: 1,
|
|
|
date: "2016-05-02",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -393,6 +373,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 2,
|
|
|
date: "2016-05-04",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -400,6 +381,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 3,
|
|
|
date: "2016-05-01",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -407,6 +389,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 4,
|
|
|
date: "2016-05-02",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -414,6 +397,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 5,
|
|
|
date: "2016-05-04",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -421,6 +405,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 6,
|
|
|
date: "2016-05-01",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -428,6 +413,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 7,
|
|
|
date: "2016-05-08",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -435,6 +421,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 8,
|
|
|
date: "2016-05-06",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -442,6 +429,7 @@ export default {
|
|
|
address: "上海市普陀区金沙江路 1518 弄"
|
|
|
},
|
|
|
{
|
|
|
+ id: 9,
|
|
|
date: "2016-05-07",
|
|
|
name: "王小虎",
|
|
|
show: true,
|
|
@@ -455,17 +443,22 @@ export default {
|
|
|
pageNumber: 1,
|
|
|
total: 0
|
|
|
}, //分页
|
|
|
+ form: {}, //查询条件
|
|
|
leftRecoList: [], //左推荐
|
|
|
rightRecoList: [], //右推荐
|
|
|
leftAI: true, //左右推荐公用-互斥
|
|
|
- form: {}, //查询条件
|
|
|
lArray: [], //左侧选中数据索引
|
|
|
rArray: [], //右侧选中数据索引
|
|
|
hasRequestedFlag: false //用于标识是否关联过数据,若是则重新请求第一页数据,
|
|
|
};
|
|
|
},
|
|
|
created() {},
|
|
|
- mounted() {},
|
|
|
+ mounted() {
|
|
|
+ let lTableBody = this.$refs.lTableBody;
|
|
|
+ lTableBody.addEventListener("scroll", this.Scroll("lTableBody"), false);
|
|
|
+ let rTableBody = this.$refs.rTableBody;
|
|
|
+ rTableBody.addEventListener("scroll", this.Scroll("rTableBody"), false);
|
|
|
+ },
|
|
|
computed: {
|
|
|
requestFlag() {
|
|
|
return this.lArray.length > 0 && this.rArray.length > 0;
|
|
@@ -474,19 +467,32 @@ export default {
|
|
|
methods: {
|
|
|
//切换AI辅助
|
|
|
changeType() {},
|
|
|
- //选择推荐
|
|
|
+ //推荐中的选择事件
|
|
|
selectAI(i, l) {
|
|
|
//i 索引 l 左侧AI or 右侧AI
|
|
|
if (l == "l") {
|
|
|
this.leftRecoList[i].checked = !this.leftRecoList[i].checked;
|
|
|
+ this.changeCheck(this.leftRecoList[i].id, "l");
|
|
|
+ this.LtableData.map((t, index) => {
|
|
|
+ if (t.id == this.leftRecoList[i].id) {
|
|
|
+ t.checked = true;
|
|
|
+ }
|
|
|
+ });
|
|
|
} else {
|
|
|
this.rightRecoList[i].checked = !this.rightRecoList[i].checked;
|
|
|
+ this.changeCheck(this.rightRecoList[i].id, "r");
|
|
|
+ this.RtableData.map((t, i) => {
|
|
|
+ if (t.id == this.rightRecoList[i].id) {
|
|
|
+ t.checked = true;
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
//查看本次历史记录
|
|
|
showHistory() {
|
|
|
this.$refs.history.showDialog();
|
|
|
},
|
|
|
+ //隐藏 动画
|
|
|
animate() {
|
|
|
//前端假删->隐藏已经关联的数据,若真删有bug
|
|
|
//两侧
|
|
@@ -512,17 +518,52 @@ export default {
|
|
|
let index = this[key].indexOf(i);
|
|
|
this[key].splice(index, 1);
|
|
|
}
|
|
|
+ },
|
|
|
+ //滚动到底部方法
|
|
|
+ Scroll(body) {
|
|
|
+ // this.$refs[body].scrollTop 滚动距离
|
|
|
+ // this.$refs[body].scrollHeight 滚动高度
|
|
|
+ // this.$refs[body].offsetHeight 元素高度
|
|
|
+ let scrollTop = this.$refs[body].scrollTop;
|
|
|
+ let scrollHeight = this.$refs[body].scrollHeight;
|
|
|
+ let offsetHeight = this.$refs[body].offsetHeight;
|
|
|
+ console.log(body);
|
|
|
+ console.log(scrollTop, offsetHeight, scrollHeight);
|
|
|
+ if (scrollTop + offsetHeight >= scrollHeight) {
|
|
|
+ console.log("request");
|
|
|
+ this.RtableData.push(
|
|
|
+ {
|
|
|
+ date: "2016-05-02",
|
|
|
+ name: "王小虎",
|
|
|
+ show: true,
|
|
|
+ checked: false,
|
|
|
+ address: "上海市普陀区金沙江路 1518 弄"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ date: "2016-05-04",
|
|
|
+ name: "王小虎",
|
|
|
+ show: true,
|
|
|
+ checked: false,
|
|
|
+ address: "上海市普陀区金沙江路 1518 弄"
|
|
|
+ }
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
//判断两边是否均有选中值
|
|
|
requestFlag(n, o) {
|
|
|
if (n) {
|
|
|
+ this.rightRecoList = [];
|
|
|
+ this.leftRecoList = [];
|
|
|
this.animate();
|
|
|
}
|
|
|
},
|
|
|
//AI辅助-左侧
|
|
|
lArray(n, o) {
|
|
|
+ //先清空,返回结果后赋值
|
|
|
+ this.rightRecoList = [];
|
|
|
+ //上->此赋值操作与 后台返回的值 异步问题
|
|
|
if (n.length > 0) {
|
|
|
this.leftAI = false;
|
|
|
this.rightRecoList = [
|
|
@@ -558,6 +599,7 @@ export default {
|
|
|
},
|
|
|
//AI辅助-右侧
|
|
|
rArray(n, o) {
|
|
|
+ this.leftRecoList = [];
|
|
|
if (n.length > 0) {
|
|
|
this.leftAI = true;
|
|
|
this.leftRecoList = [
|
|
@@ -630,14 +672,8 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .bgf5 {
|
|
|
- background-color: #f5f7fa;
|
|
|
- }
|
|
|
- .el-table__header-wrapper label.el-checkbox {
|
|
|
- display: none;
|
|
|
- }
|
|
|
.table-box {
|
|
|
- height: calc(100% - 35px);
|
|
|
+ height: calc(100% - 50px);
|
|
|
position: relative;
|
|
|
.AIRecom {
|
|
|
position: absolute;
|
|
@@ -705,6 +741,44 @@ export default {
|
|
|
::-webkit-scrollbar {
|
|
|
display: none;
|
|
|
}
|
|
|
+ //列表
|
|
|
+ .custom-table {
|
|
|
+ height: 100%;
|
|
|
+ .t-body {
|
|
|
+ overflow-y: auto;
|
|
|
+ height: calc(100% - 39px);
|
|
|
+ }
|
|
|
+ tr {
|
|
|
+ line-height: 38px;
|
|
|
+ }
|
|
|
+ td {
|
|
|
+ border-bottom: 1px solid #ebeef5;
|
|
|
+ p {
|
|
|
+ // width: 70px;
|
|
|
+ // white-space: nowrap;
|
|
|
+ // text-overflow: ellipsis;
|
|
|
+ overflow: hidden;
|
|
|
+ height: 38px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bgf5 {
|
|
|
+ background-color: #f5f7fa;
|
|
|
+ }
|
|
|
+ td.special {
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .l-custom-table {
|
|
|
+ td {
|
|
|
+ text-align: right;
|
|
|
+ padding-right: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .r-custom-table {
|
|
|
+ td {
|
|
|
+ padding-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.fr {
|