|
@@ -114,11 +114,18 @@ export default {
|
|
|
currentPage: 1,
|
|
|
// 每页大小 默认每页10条数据
|
|
|
pageSize: 13,
|
|
|
+ localWpinfo: {},
|
|
|
+ localCompanyid: "",
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
//获取区域公司
|
|
|
this.getOrganizationList();
|
|
|
+ this.localWpinfo = JSON.parse(localStorage.getItem("wpInfo"))
|
|
|
+ ? JSON.parse(localStorage.getItem("wpInfo"))
|
|
|
+ : {};
|
|
|
+ this.localCompanyid = localStorage.getItem("companyId");
|
|
|
+ // console.log(localWpid);
|
|
|
},
|
|
|
methods: {
|
|
|
//获取区域公司
|
|
@@ -128,7 +135,12 @@ export default {
|
|
|
return { label: item.aname, value: item.nemCode, ...item };
|
|
|
});
|
|
|
this.OrganizationList = [...this.OrganizationList, ...company];
|
|
|
- this.checkNode = this.OrganizationList[0].value;
|
|
|
+ this.checkNode = this.localCompanyid
|
|
|
+ ? this.localCompanyid
|
|
|
+ : this.OrganizationList[0].value;
|
|
|
+ if (!this.localCompanyid) {
|
|
|
+ localStorage.setItem("companyId", this.OrganizationList[0].value);
|
|
|
+ }
|
|
|
this.getStationList();
|
|
|
});
|
|
|
},
|
|
@@ -152,20 +164,45 @@ export default {
|
|
|
});
|
|
|
if (data.data.length) {
|
|
|
this.allPowerStation = data.data;
|
|
|
+ let index = Object.keys(this.localWpinfo).length
|
|
|
+ ? this.allPowerStation.findIndex(
|
|
|
+ (item) => item.nemCode == this.localWpinfo.wpid
|
|
|
+ )
|
|
|
+ : -1;
|
|
|
+ if (index >= this.pageSize) {
|
|
|
+ this.currentPage = 2;
|
|
|
+ }
|
|
|
+ if (index == -1) {
|
|
|
+ this.localWpinfo = {};
|
|
|
+ this.localCompanyid = "";
|
|
|
+ localStorage.removeItem("wpInfo");
|
|
|
+ localStorage.removeItem("companyId");
|
|
|
+ }
|
|
|
this.pageTotal = data.data.length;
|
|
|
this.pageData = this.queryByPage();
|
|
|
- this.stationCode = this.pageData[0].nemCode;
|
|
|
- this.stationName = this.pageData[0].name;
|
|
|
+ this.stationCode = Object.keys(this.localWpinfo).length
|
|
|
+ ? this.localWpinfo.wpid
|
|
|
+ : this.pageData[0].nemCode;
|
|
|
+ this.stationName = Object.keys(this.localWpinfo).length
|
|
|
+ ? this.localWpinfo.wpname
|
|
|
+ : this.pageData[0].name;
|
|
|
if (this.showType) {
|
|
|
this.getProject(this.stationCode);
|
|
|
} else {
|
|
|
this.$emit(
|
|
|
"renderData",
|
|
|
this.checkNode,
|
|
|
- this.pageData[0].nemCode,
|
|
|
+ this.stationCode,
|
|
|
this.pageData[0].name
|
|
|
);
|
|
|
}
|
|
|
+ if (!Object.keys(this.localWpinfo).length) {
|
|
|
+ this.localWpinfo = {
|
|
|
+ wpid: this.pageData[0].nemCode,
|
|
|
+ wpname: this.pageData[0].name,
|
|
|
+ };
|
|
|
+ localStorage.setItem("wpInfo", JSON.stringify(this.localWpinfo));
|
|
|
+ }
|
|
|
} else {
|
|
|
this.allPowerStation = [];
|
|
|
this.pageTotal = 0;
|
|
@@ -214,6 +251,10 @@ export default {
|
|
|
companyChanged(val) {
|
|
|
this.checkNode = val;
|
|
|
this.currentPage = 1;
|
|
|
+ this.localCompanyid = val;
|
|
|
+ localStorage.setItem("companyId", val);
|
|
|
+ localStorage.removeItem("wpInfo");
|
|
|
+ this.localWpinfo = {};
|
|
|
this.getStationList();
|
|
|
},
|
|
|
//期次切换
|
|
@@ -237,6 +278,8 @@ export default {
|
|
|
this.stationName
|
|
|
);
|
|
|
}
|
|
|
+ this.localWpinfo = { wpid: val, wpname: this.stationName };
|
|
|
+ localStorage.setItem("wpId", JSON.stringify(this.localWpinfo));
|
|
|
},
|
|
|
// 实现分页的方法
|
|
|
queryByPage() {
|
|
@@ -248,6 +291,14 @@ export default {
|
|
|
return this.allPowerStation.slice(start, end);
|
|
|
},
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ type: {
|
|
|
+ handler(oldVal, newVal) {
|
|
|
+ console.log(oldVal, newVal);
|
|
|
+ },
|
|
|
+ immediate: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|