|
@@ -353,6 +353,7 @@ export default {
|
|
|
this.selectedZone = ''
|
|
|
}
|
|
|
this.currentLevel = level
|
|
|
+ this.currentZoneData = data
|
|
|
this.getEventStatusData(level, data.ccode)
|
|
|
this.queryPlazaInfoCount(data.ccode, data.level, data.cid)
|
|
|
this.getSystemList(data.ccode, data.level)
|
|
@@ -363,7 +364,11 @@ export default {
|
|
|
} else {
|
|
|
this.pantProjectsMap(data, this.currentSysId)
|
|
|
}
|
|
|
- this.crumbsHtml = this.crumbsHtml.splice(0, index + 1)
|
|
|
+ if (level === 1) {
|
|
|
+ this.crumbsHtml = ''
|
|
|
+ } else {
|
|
|
+ this.crumbsHtml = this.crumbsHtml.splice(0, index + 1)
|
|
|
+ }
|
|
|
},
|
|
|
/**
|
|
|
* @Description 分区树 点击选择分区
|
|
@@ -1073,7 +1078,6 @@ export default {
|
|
|
*@Description 生成弹出框HTML
|
|
|
*/
|
|
|
createPopupHtmlContent(data, name) {
|
|
|
- console.log(data)
|
|
|
if (Array.isArray(data) && data.length) {
|
|
|
let that = this
|
|
|
let html = ''
|