Browse Source

数据中心

韩福成 1 year ago
parent
commit
600f829726
1 changed files with 0 additions and 4 deletions
  1. 0 4
      data-ui/src/views/data/digitalforest/gridLevel/index.vue

+ 0 - 4
data-ui/src/views/data/digitalforest/gridLevel/index.vue

@@ -364,9 +364,7 @@ export default {
       listGridLevel(this.lazyQueryParams).then(response => {
         const list = this.handleTree(response.data, 'id', 'parentId')
         list.forEach(item=>{
-          if(!item.name.includes("网格")){
             item.hasChildren = true;
-          }
         })
         resolve(list);
         this.loading = false
@@ -386,9 +384,7 @@ export default {
       listGridLevel(this.queryParams).then(response => {
         this.gridLevelList = this.handleTree(response.data, 'id', 'parentId')
         this.gridLevelList.forEach(item=>{
-          if(!item.name.includes("网格")){
             item.hasChildren = true;
-          }
         })
         this.loading = false
       })