|
@@ -559,7 +559,6 @@ export default {
|
|
|
ccode,
|
|
|
level
|
|
|
);
|
|
|
-
|
|
|
},
|
|
|
tabChange(tab) {
|
|
|
this.currentDialogTab = tab.id;
|
|
@@ -580,7 +579,6 @@ export default {
|
|
|
this.zoneTotal = 0;
|
|
|
this.projectTotal = 0;
|
|
|
recursionData(res.data);
|
|
|
- console.log(flattenArr);
|
|
|
let finalHandledArr = [];
|
|
|
flattenArr.forEach((item) => {
|
|
|
let path = item.path.split("/");
|
|
@@ -1168,6 +1166,10 @@ export default {
|
|
|
*@description 打开弹窗
|
|
|
*/
|
|
|
openMaskPanel(system) {
|
|
|
+ let target = this.getDataByCityCcode(this.selectedZone)
|
|
|
+ if (target) {
|
|
|
+ this.currentLevel = target.level
|
|
|
+ }
|
|
|
this.currentSysId = system.smsxt;
|
|
|
this.tabData = [];
|
|
|
this.selectedDialogZone = this.selectedZone;
|
|
@@ -1196,7 +1198,7 @@ export default {
|
|
|
system.smsxt,
|
|
|
this.activeName,
|
|
|
this.selectedDialogZone,
|
|
|
- this.currentDialogLevel
|
|
|
+ this.currentLevel
|
|
|
);
|
|
|
},
|
|
|
/**
|