|
@@ -3,7 +3,7 @@
|
|
* @Author: wangcc
|
|
* @Author: wangcc
|
|
* @Date: 2022-07-06 15:56:45
|
|
* @Date: 2022-07-06 15:56:45
|
|
* @LastEditors: wangcc
|
|
* @LastEditors: wangcc
|
|
- * @LastEditTime: 2023-03-13 09:25:41
|
|
|
|
|
|
+ * @LastEditTime: 2023-03-13 11:26:48
|
|
* @FilePath: \castgroup_bigscreen\src\views\index.vue
|
|
* @FilePath: \castgroup_bigscreen\src\views\index.vue
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
-->
|
|
-->
|
|
@@ -185,6 +185,10 @@
|
|
ref="tableFrom"
|
|
ref="tableFrom"
|
|
highlight-current-row
|
|
highlight-current-row
|
|
size="small"
|
|
size="small"
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
|
+ element-loading-background="rgba(1,33,35, 0.8)"
|
|
:data="tableData"
|
|
:data="tableData"
|
|
@mouseenter.native="stopScroll"
|
|
@mouseenter.native="stopScroll"
|
|
@mouseleave.native="startScroll"
|
|
@mouseleave.native="startScroll"
|
|
@@ -333,7 +337,9 @@ export default {
|
|
}
|
|
}
|
|
],
|
|
],
|
|
timer: null,
|
|
timer: null,
|
|
|
|
+ rowIdClick: null,
|
|
tableData: [],
|
|
tableData: [],
|
|
|
|
+ loading: false,
|
|
rowList: [],
|
|
rowList: [],
|
|
cur: 0,
|
|
cur: 0,
|
|
total: 0,
|
|
total: 0,
|
|
@@ -515,7 +521,7 @@ export default {
|
|
debounce(this.debounceGetData, 300, false);
|
|
debounce(this.debounceGetData, 300, false);
|
|
},
|
|
},
|
|
debounceGetData() {
|
|
debounceGetData() {
|
|
- console.log('请求数据');
|
|
|
|
|
|
+ // console.log('请求数据');
|
|
// console.log('page', this.$store.state.addr.page);
|
|
// console.log('page', this.$store.state.addr.page);
|
|
// {text:'森林资源',en:'forest'},
|
|
// {text:'森林资源',en:'forest'},
|
|
// {text:'林木结构',en:'treeSpecies'},
|
|
// {text:'林木结构',en:'treeSpecies'},
|
|
@@ -625,20 +631,29 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
getRightScrollData() {
|
|
getRightScrollData() {
|
|
|
|
+ let queryParams = {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 300
|
|
|
|
+ }
|
|
let param = {
|
|
let param = {
|
|
smallNumber: this.xiaobaninput,
|
|
smallNumber: this.xiaobaninput,
|
|
cityId: this.$store.state.addr.selectCity.areaId,
|
|
cityId: this.$store.state.addr.selectCity.areaId,
|
|
countyId: this.$store.state.addr.selectDistrict.areaId,
|
|
countyId: this.$store.state.addr.selectDistrict.areaId,
|
|
townId: this.$store.state.addr.selectStreet.areaId,
|
|
townId: this.$store.state.addr.selectStreet.areaId,
|
|
courseId: this.$store.state.addr.selectProject.ProjectID,
|
|
courseId: this.$store.state.addr.selectProject.ProjectID,
|
|
- pageNum: this.queryParams.pageNum,
|
|
|
|
- pageSize: this.queryParams.pageSize
|
|
|
|
|
|
+ pageNum: queryParams.pageNum,
|
|
|
|
+ pageSize: queryParams.pageSize
|
|
};
|
|
};
|
|
|
|
+ this.loading = true;
|
|
rightScrollData(param)
|
|
rightScrollData(param)
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
|
+ this.loading = false;
|
|
this.tableData = res.rows;
|
|
this.tableData = res.rows;
|
|
this.total = res.total;
|
|
this.total = res.total;
|
|
- this.getProjectSmallClassMap(this.tableData);
|
|
|
|
|
|
+ if (this.rowIdClick) {
|
|
|
|
+ this.getProjectSmallClassMap(this.tableData);
|
|
|
|
+ }
|
|
|
|
+ // this.getProjectSmallClassMap(this.tableData);
|
|
})
|
|
})
|
|
.catch((err) => {
|
|
.catch((err) => {
|
|
console.log('scrollBoard err', err);
|
|
console.log('scrollBoard err', err);
|
|
@@ -1300,8 +1315,10 @@ export default {
|
|
// proClass[e.rowIndex]&&proClass[e.rowIndex].classList.add('active');
|
|
// proClass[e.rowIndex]&&proClass[e.rowIndex].classList.add('active');
|
|
|
|
|
|
let rowId = e.row[4];
|
|
let rowId = e.row[4];
|
|
|
|
+ this.rowIdClick = rowId;
|
|
this.changeSelectProject({ ProjectID: rowId, ProjectName: e.row[0] });
|
|
this.changeSelectProject({ ProjectID: rowId, ProjectName: e.row[0] });
|
|
document.getElementById(rowId).classList.add('active');
|
|
document.getElementById(rowId).classList.add('active');
|
|
|
|
+ // this.getProjectSmallClassMap(this.tableData);
|
|
// let param = {
|
|
// let param = {
|
|
// courseId: rowId
|
|
// courseId: rowId
|
|
// // pageNum: 1,
|
|
// // pageNum: 1,
|
|
@@ -1529,11 +1546,11 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
/deep/ .el-table__body .el-table__row.hover-row td {
|
|
/deep/ .el-table__body .el-table__row.hover-row td {
|
|
- background-color: rgba(255, 170, 0, 0.20) !important;
|
|
|
|
|
|
+ background-color: rgba(255, 170, 0, 0.2) !important;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
/deep/ .el-table tbody tr:hover > td {
|
|
/deep/ .el-table tbody tr:hover > td {
|
|
- background-color: rgba(255, 170, 0, 0.20) !important;
|
|
|
|
|
|
+ background-color: rgba(255, 170, 0, 0.2) !important;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.el-table {
|
|
.el-table {
|