|
@@ -195,13 +195,19 @@ export default {
|
|
|
//获取区域公司
|
|
|
getOrganizationList() {
|
|
|
headerCompany({}).then(({ data }) => {
|
|
|
- let company = data.data.map((item) => {
|
|
|
- return { label: item.aname, value: item.nemCode, ...item };
|
|
|
- });
|
|
|
let menu = this.$route.path.includes("windPowerPlant");
|
|
|
let gf = this.localCompanyid
|
|
|
? this.localCompanyid.includes("GF")
|
|
|
: false;
|
|
|
+ let company = data.data
|
|
|
+ .map((item) => {
|
|
|
+ return { label: item.aname, value: item.nemCode, ...item };
|
|
|
+ })
|
|
|
+ .filter((item) => {
|
|
|
+ return menu
|
|
|
+ ? !item.nemCode.includes("GF")
|
|
|
+ : item.nemCode.includes("GF");
|
|
|
+ });
|
|
|
this.OrganizationList = [...this.OrganizationList, ...company];
|
|
|
this.checkNode = this.localCompanyid
|
|
|
? menu
|