|
@@ -3,7 +3,7 @@
|
|
|
* @Author: wangcc
|
|
|
* @Date: 2022-07-06 15:56:45
|
|
|
* @LastEditors: wangcc
|
|
|
- * @LastEditTime: 2023-03-10 17:53:02
|
|
|
+ * @LastEditTime: 2023-03-13 09:25:41
|
|
|
* @FilePath: \castgroup_bigscreen\src\views\index.vue
|
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
|
-->
|
|
@@ -603,7 +603,6 @@ export default {
|
|
|
townId: this.$store.state.addr.selectStreet.areaId,
|
|
|
courseId: this.$store.state.addr.selectProject.ProjectID
|
|
|
};
|
|
|
- // console.log('cityId',param.cityId);
|
|
|
page1echarts02(param)
|
|
|
.then((res) => {
|
|
|
this.page1Char2.xAxis.data = res.data.map((item) => {
|
|
@@ -637,32 +636,9 @@ export default {
|
|
|
};
|
|
|
rightScrollData(param)
|
|
|
.then((res) => {
|
|
|
- // console.log('res',res.rows.length);
|
|
|
- // console.log('this.scrollBoardConfig',this.scrollBoardConfig);
|
|
|
-
|
|
|
- //当小班滚动数据少时重设参数
|
|
|
- // if(res.rows.length<=15){
|
|
|
- // this.scrollBoardConfig.rowNum = 5;
|
|
|
- // this.scrollBoardStyle.height = '25vh'
|
|
|
- // }
|
|
|
this.tableData = res.rows;
|
|
|
this.total = res.total;
|
|
|
- // this.scrollBoardConfig.data = [];
|
|
|
- // res.rows.forEach((element) => {
|
|
|
- // this.scrollBoardConfig.data.push([
|
|
|
- // element.smallNumber,
|
|
|
- // element.treeComp,
|
|
|
- // element.perAcreStock + 'm³',
|
|
|
- // element.landArea + '亩',
|
|
|
- // element.id
|
|
|
- // ]);
|
|
|
- // });
|
|
|
- // this.scrollBoardKey = Date.now();
|
|
|
- // this.$refs.scrollBoard &&
|
|
|
- // this.$refs.scrollBoard.updateRows(this.scrollBoardConfig.data);
|
|
|
-
|
|
|
- // console.log('this.scrollBoardConfig.data', this.scrollBoardConfig.data);
|
|
|
- // this.scrollBoardConfig = res.data;
|
|
|
+ this.getProjectSmallClassMap(this.tableData);
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.log('scrollBoard err', err);
|
|
@@ -1268,7 +1244,6 @@ export default {
|
|
|
this.getPageData();
|
|
|
},
|
|
|
scrollBoardClick(row) {
|
|
|
- console.log(row);
|
|
|
let param = {
|
|
|
id: row.id
|
|
|
};
|
|
@@ -1325,19 +1300,18 @@ export default {
|
|
|
// proClass[e.rowIndex]&&proClass[e.rowIndex].classList.add('active');
|
|
|
|
|
|
let rowId = e.row[4];
|
|
|
- console.log(rowId);
|
|
|
this.changeSelectProject({ ProjectID: rowId, ProjectName: e.row[0] });
|
|
|
document.getElementById(rowId).classList.add('active');
|
|
|
- let param = {
|
|
|
- courseId: rowId
|
|
|
- // pageNum: 1,
|
|
|
- // pageSize: 50
|
|
|
- };
|
|
|
- projectSmallClass(param).then((res) => {
|
|
|
- if (res.code == 200) {
|
|
|
- this.getProjectSmallClassMap(res.rows);
|
|
|
- }
|
|
|
- });
|
|
|
+ // let param = {
|
|
|
+ // courseId: rowId
|
|
|
+ // // pageNum: 1,
|
|
|
+ // // pageSize: 50
|
|
|
+ // };
|
|
|
+ // projectSmallClass(param).then((res) => {
|
|
|
+ // if (res.code == 200) {
|
|
|
+ // this.getProjectSmallClassMap(res.rows);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
},
|
|
|
jumpDistrict() {
|
|
|
if (this.vuexDistrictList) {
|