瀏覽代碼

行政区划三亚市

maxiaoxiao 9 月之前
父節點
當前提交
30b391aefc
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      src/components/Combinations/toolBar/toolBar.vue

+ 7 - 1
src/components/Combinations/toolBar/toolBar.vue

@@ -242,7 +242,13 @@ export default {
     },
     },
     getXzqTreeData() {
     getXzqTreeData() {
       GetXzqhTree().then((res) => {
       GetXzqhTree().then((res) => {
-        this.xzqTreeData = res.data;
+        if (res.data.length > 0) {
+          const list = res.data[0].children.filter((item) => {
+            return item.label == "三亚市";
+          });
+          if (list.length > 0) this.xzqTreeData = list[0];
+          else this.xzqTreeData = res.data;
+        }
       });
       });
     },
     },
     toggleVisibility() {
     toggleVisibility() {