Browse Source

企业园区大屏菜单返回保税区与企业

sakura 1 year ago
parent
commit
7672a18d91
1 changed files with 7 additions and 2 deletions
  1. 7 2
      src/views/GARDENDATA/index.vue

+ 7 - 2
src/views/GARDENDATA/index.vue

@@ -228,8 +228,13 @@ export default {
     // 获取保税区列表
     getDeptList() {
       this.loading = true;
-      listDept({parentId: '100'}).then(response => {
-        this.deptList = response.data
+      listDept().then(response => {
+        let data = response.data
+        // let deptList = data.filler()
+        this.deptList = data.filter(item => {
+          return item.type === 2 || item.type === 3;
+        })
+        console.log(this.deptList)
         this.loading = false;
       });
     },