From aed6d48870fff07ebb1fe1b6d3226fce01315b59 Mon Sep 17 00:00:00 2001 From: HAHA Date: Thu, 16 Jun 2022 09:05:11 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E7=BD=91=E6=A0=BC=E4=B8=8B=E6=8B=89?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 29 +++++++++++++++++++++ src/views/modules/cabaseinfo/capingfang.vue | 29 +++++++++++++++++++++ src/views/modules/cabaseinfo/carental.vue | 29 +++++++++++++++++++++ src/views/modules/cabaseinfo/caresident.vue | 29 +++++++++++++++++++++ src/views/modules/cabaseinfo/carotators.vue | 29 +++++++++++++++++++++ 5 files changed, 145 insertions(+) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index 5a07d25f..4f32e593 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -16,6 +16,14 @@ clearable > + + + + {{ $t("query") }} @@ -145,9 +153,30 @@ export default { dataForm: { buildingName: "", communityName: "", + gridId:"" }, + caLouDongOptions:[] }; }, + methods:{ + getloudongOptions(){ + this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + if(resp.data.code === 0){ + this.caLouDongOptions = resp.data.data + } + }).catch(error => { + this.$message.error(error) + }) + + }, + handlePartyChange(val) { + console.log('val------pp', val) + this.dataForm.gridId = val[val.length - 1] + }, + }, +created(){ + this.getloudongOptions() + }, components: { AddOrUpdate, }, diff --git a/src/views/modules/cabaseinfo/capingfang.vue b/src/views/modules/cabaseinfo/capingfang.vue index 69404307..13043d32 100644 --- a/src/views/modules/cabaseinfo/capingfang.vue +++ b/src/views/modules/cabaseinfo/capingfang.vue @@ -16,6 +16,14 @@ clearable > + + + + {{ $t("query") }} @@ -145,9 +153,30 @@ export default { dataForm: { buildingName: "", communityName: "", + gridId:"" }, + caLouDongOptions:[] }; }, + methods:{ + getloudongOptions(){ + this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + if(resp.data.code === 0){ + this.caLouDongOptions = resp.data.data + } + }).catch(error => { + this.$message.error(error) + }) + + }, + handlePartyChange(val) { + console.log('val------pp', val) + this.dataForm.gridId = val[val.length - 1] + }, + }, +created(){ + this.getloudongOptions() + }, components: { AddOrUpdate, }, diff --git a/src/views/modules/cabaseinfo/carental.vue b/src/views/modules/cabaseinfo/carental.vue index 0980e803..317e299c 100644 --- a/src/views/modules/cabaseinfo/carental.vue +++ b/src/views/modules/cabaseinfo/carental.vue @@ -22,6 +22,14 @@ placeholder="承租人姓名" clearable > + + + + {{ $t("query") }} @@ -146,9 +154,30 @@ export default { houseName: "", residentName: "", renterName: "", + gridId:"" }, + caLouDongOptions:[] }; }, + methods:{ + getloudongOptions(){ + this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + if(resp.data.code === 0){ + this.caLouDongOptions = resp.data.data + } + }).catch(error => { + this.$message.error(error) + }) + + }, + handlePartyChange(val) { + console.log('val------pp', val) + this.dataForm.gridId = val[val.length - 1] + }, + }, +created(){ + this.getloudongOptions() + }, components: { AddOrUpdate, }, diff --git a/src/views/modules/cabaseinfo/caresident.vue b/src/views/modules/cabaseinfo/caresident.vue index 0cba7cd8..68010a88 100644 --- a/src/views/modules/cabaseinfo/caresident.vue +++ b/src/views/modules/cabaseinfo/caresident.vue @@ -19,6 +19,14 @@ clearable > + + + + {{ $t("query") }} @@ -137,9 +145,30 @@ export default { idCard: "", residentName: "", telephone: "", + gridId:"" }, + caLouDongOptions:[] }; }, + methods:{ + getloudongOptions(){ + this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + if(resp.data.code === 0){ + this.caLouDongOptions = resp.data.data + } + }).catch(error => { + this.$message.error(error) + }) + + }, + handlePartyChange(val) { + console.log('val------pp', val) + this.dataForm.gridId = val[val.length - 1] + }, + }, +created(){ + this.getloudongOptions() + }, components: { AddOrUpdate, }, diff --git a/src/views/modules/cabaseinfo/carotators.vue b/src/views/modules/cabaseinfo/carotators.vue index c171dad8..6f7ba14e 100644 --- a/src/views/modules/cabaseinfo/carotators.vue +++ b/src/views/modules/cabaseinfo/carotators.vue @@ -18,6 +18,14 @@ placeholder="联系方式" clearable > + + + + {{ $t("query") }} @@ -131,9 +139,30 @@ export default { idCard: "", residentName: "", telephone: "", + gridId:"" }, + caLouDongOptions:[] }; }, + methods:{ + getloudongOptions(){ + this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + if(resp.data.code === 0){ + this.caLouDongOptions = resp.data.data + } + }).catch(error => { + this.$message.error(error) + }) + + }, + handlePartyChange(val) { + console.log('val------pp', val) + this.dataForm.gridId = val[val.length - 1] + }, + }, +created(){ + this.getloudongOptions() + }, components: { AddOrUpdate, }, From 8c68e3e13b0a674f3752da0b962a3e95f8b30e0d Mon Sep 17 00:00:00 2001 From: HAHA Date: Thu, 16 Jun 2022 15:36:09 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=A4=BE=E5=8C=BA?= =?UTF-8?q?=E8=A1=97=E9=81=93=E7=BD=91=E6=A0=BC=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 18 ++++++++++++++++++ src/views/modules/cabaseinfo/capingfang.vue | 18 ++++++++++++++++++ src/views/modules/cabaseinfo/carental.vue | 18 ++++++++++++++++++ src/views/modules/cabaseinfo/caresident.vue | 18 ++++++++++++++++++ src/views/modules/cabaseinfo/carotators.vue | 18 ++++++++++++++++++ 5 files changed, 90 insertions(+) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index 4f32e593..62af00f4 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -49,6 +49,24 @@ align="center" width="50" > + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Date: Thu, 16 Jun 2022 17:18:25 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=BC=A0=E6=A0=87?= =?UTF-8?q?=E6=94=BE=E7=BD=AE=E5=B0=B1=E6=98=BE=E7=A4=BA=E7=9A=84=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 7 +++++-- src/views/modules/cabaseinfo/capingfang.vue | 9 ++++++--- src/views/modules/cabaseinfo/carental.vue | 9 ++++++--- src/views/modules/cabaseinfo/caresident.vue | 9 ++++++--- src/views/modules/cabaseinfo/carotators.vue | 9 ++++++--- 5 files changed, 29 insertions(+), 14 deletions(-) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index 62af00f4..e363467a 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -53,9 +53,11 @@ prop="comName" label="社区" header-align="center" - align="center"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> + align="center" + :show-overflow-tooltip="true"> Date: Fri, 17 Jun 2022 14:29:48 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E6=89=80=E5=B1=9E?= =?UTF-8?q?=E7=BD=91=E6=A0=BC=E4=BD=8D=E7=BD=AE=EF=BC=8C=E5=8E=BB=E9=99=A4?= =?UTF-8?q?=E6=9C=80=E5=90=8E=E4=B8=80=E5=B1=82=E4=B8=8B=E6=8B=89=E8=8F=9C?= =?UTF-8?q?=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 33 ++++++++++++++------- src/views/modules/cabaseinfo/capingfang.vue | 33 ++++++++++++++------- src/views/modules/cabaseinfo/carental.vue | 33 ++++++++++++++------- src/views/modules/cabaseinfo/caresident.vue | 33 ++++++++++++++------- src/views/modules/cabaseinfo/carotators.vue | 33 ++++++++++++++------- 5 files changed, 110 insertions(+), 55 deletions(-) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index e363467a..436786c8 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -2,6 +2,14 @@
+ + + + - - - - {{ $t("query") }} @@ -183,13 +183,24 @@ export default { getloudongOptions(){ this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { if(resp.data.code === 0){ - this.caLouDongOptions = resp.data.data + this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } }).catch(error => { this.$message.error(error) - }) - + }) }, + removeEmptySubOrgList (orgArray) { + orgArray.forEach((orgInfo) => { + if (orgInfo && orgInfo.children) { + if (orgInfo.children.length === 0) { + orgInfo.children = undefined + } else { + this.removeEmptySubOrgList(orgInfo.children) + } + } + }) + return orgArray; + }, handlePartyChange(val) { console.log('val------pp', val) this.dataForm.gridId = val[val.length - 1] diff --git a/src/views/modules/cabaseinfo/capingfang.vue b/src/views/modules/cabaseinfo/capingfang.vue index b0d8df75..4e778ecd 100644 --- a/src/views/modules/cabaseinfo/capingfang.vue +++ b/src/views/modules/cabaseinfo/capingfang.vue @@ -2,6 +2,14 @@
+ + + + - - - - {{ $t("query") }} @@ -183,13 +183,24 @@ export default { getloudongOptions(){ this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { if(resp.data.code === 0){ - this.caLouDongOptions = resp.data.data + this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } }).catch(error => { this.$message.error(error) - }) - + }) }, + removeEmptySubOrgList (orgArray) { + orgArray.forEach((orgInfo) => { + if (orgInfo && orgInfo.children) { + if (orgInfo.children.length === 0) { + orgInfo.children = undefined + } else { + this.removeEmptySubOrgList(orgInfo.children) + } + } + }) + return orgArray; + }, handlePartyChange(val) { console.log('val------pp', val) this.dataForm.gridId = val[val.length - 1] diff --git a/src/views/modules/cabaseinfo/carental.vue b/src/views/modules/cabaseinfo/carental.vue index bb79ac5a..16b6927d 100644 --- a/src/views/modules/cabaseinfo/carental.vue +++ b/src/views/modules/cabaseinfo/carental.vue @@ -2,6 +2,14 @@
+ + + + - - - - {{ $t("query") }} @@ -184,13 +184,24 @@ export default { getloudongOptions(){ this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { if(resp.data.code === 0){ - this.caLouDongOptions = resp.data.data + this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } }).catch(error => { this.$message.error(error) - }) - + }) }, + removeEmptySubOrgList (orgArray) { + orgArray.forEach((orgInfo) => { + if (orgInfo && orgInfo.children) { + if (orgInfo.children.length === 0) { + orgInfo.children = undefined + } else { + this.removeEmptySubOrgList(orgInfo.children) + } + } + }) + return orgArray; + }, handlePartyChange(val) { console.log('val------pp', val) this.dataForm.gridId = val[val.length - 1] diff --git a/src/views/modules/cabaseinfo/caresident.vue b/src/views/modules/cabaseinfo/caresident.vue index c1a5d881..a875af48 100644 --- a/src/views/modules/cabaseinfo/caresident.vue +++ b/src/views/modules/cabaseinfo/caresident.vue @@ -2,6 +2,14 @@
+ + + + @@ -19,14 +27,6 @@ clearable > - - - - {{ $t("query") }} @@ -175,13 +175,24 @@ export default { getloudongOptions(){ this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { if(resp.data.code === 0){ - this.caLouDongOptions = resp.data.data + this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } }).catch(error => { this.$message.error(error) - }) - + }) }, + removeEmptySubOrgList (orgArray) { + orgArray.forEach((orgInfo) => { + if (orgInfo && orgInfo.children) { + if (orgInfo.children.length === 0) { + orgInfo.children = undefined + } else { + this.removeEmptySubOrgList(orgInfo.children) + } + } + }) + return orgArray; + }, handlePartyChange(val) { console.log('val------pp', val) this.dataForm.gridId = val[val.length - 1] diff --git a/src/views/modules/cabaseinfo/carotators.vue b/src/views/modules/cabaseinfo/carotators.vue index 8de489c5..07683ccc 100644 --- a/src/views/modules/cabaseinfo/carotators.vue +++ b/src/views/modules/cabaseinfo/carotators.vue @@ -2,6 +2,14 @@
+ + + + @@ -18,14 +26,6 @@ placeholder="联系方式" clearable > - - - - {{ $t("query") }} @@ -169,13 +169,24 @@ export default { getloudongOptions(){ this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { if(resp.data.code === 0){ - this.caLouDongOptions = resp.data.data + this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } }).catch(error => { this.$message.error(error) - }) - + }) }, + removeEmptySubOrgList (orgArray) { + orgArray.forEach((orgInfo) => { + if (orgInfo && orgInfo.children) { + if (orgInfo.children.length === 0) { + orgInfo.children = undefined + } else { + this.removeEmptySubOrgList(orgInfo.children) + } + } + }) + return orgArray; + }, handlePartyChange(val) { console.log('val------pp', val) this.dataForm.gridId = val[val.length - 1] From c45afba188f7346f36790fefef1c74d370159a7f Mon Sep 17 00:00:00 2001 From: HAHA Date: Fri, 17 Jun 2022 14:31:03 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 2 +- src/views/modules/cabaseinfo/capingfang.vue | 2 +- src/views/modules/cabaseinfo/carental.vue | 2 +- src/views/modules/cabaseinfo/caresident.vue | 2 +- src/views/modules/cabaseinfo/carotators.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index 436786c8..5d4f74ad 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -181,7 +181,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/capingfang.vue b/src/views/modules/cabaseinfo/capingfang.vue index 4e778ecd..4226a1aa 100644 --- a/src/views/modules/cabaseinfo/capingfang.vue +++ b/src/views/modules/cabaseinfo/capingfang.vue @@ -181,7 +181,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/carental.vue b/src/views/modules/cabaseinfo/carental.vue index 16b6927d..47a0c423 100644 --- a/src/views/modules/cabaseinfo/carental.vue +++ b/src/views/modules/cabaseinfo/carental.vue @@ -182,7 +182,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/caresident.vue b/src/views/modules/cabaseinfo/caresident.vue index a875af48..2b08a8e3 100644 --- a/src/views/modules/cabaseinfo/caresident.vue +++ b/src/views/modules/cabaseinfo/caresident.vue @@ -173,7 +173,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/carotators.vue b/src/views/modules/cabaseinfo/carotators.vue index 07683ccc..330a848a 100644 --- a/src/views/modules/cabaseinfo/carotators.vue +++ b/src/views/modules/cabaseinfo/carotators.vue @@ -167,7 +167,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/caLoudong/getLouDongCascade`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } From 0a29d34ca07c827cbd08087bacd84ceba93df077 Mon Sep 17 00:00:00 2001 From: HAHA Date: Fri, 17 Jun 2022 14:58:24 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 2 +- src/views/modules/cabaseinfo/capingfang.vue | 2 +- src/views/modules/cabaseinfo/carental.vue | 2 +- src/views/modules/cabaseinfo/caresident.vue | 2 +- src/views/modules/cabaseinfo/carotators.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index 5d4f74ad..c8749627 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -181,7 +181,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/capingfang.vue b/src/views/modules/cabaseinfo/capingfang.vue index 4226a1aa..0e9cffa0 100644 --- a/src/views/modules/cabaseinfo/capingfang.vue +++ b/src/views/modules/cabaseinfo/capingfang.vue @@ -181,7 +181,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/carental.vue b/src/views/modules/cabaseinfo/carental.vue index 47a0c423..40697e38 100644 --- a/src/views/modules/cabaseinfo/carental.vue +++ b/src/views/modules/cabaseinfo/carental.vue @@ -182,7 +182,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/caresident.vue b/src/views/modules/cabaseinfo/caresident.vue index 2b08a8e3..03e06553 100644 --- a/src/views/modules/cabaseinfo/caresident.vue +++ b/src/views/modules/cabaseinfo/caresident.vue @@ -173,7 +173,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/carotators.vue b/src/views/modules/cabaseinfo/carotators.vue index 330a848a..52d12b94 100644 --- a/src/views/modules/cabaseinfo/carotators.vue +++ b/src/views/modules/cabaseinfo/carotators.vue @@ -167,7 +167,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } From 6965ecf6b8a8b512517af4d6637a00557cedc4cd Mon Sep 17 00:00:00 2001 From: HAHA Date: Fri, 17 Jun 2022 15:06:03 +0800 Subject: [PATCH 7/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/caloudong.vue | 14 +++++++------- src/views/modules/cabaseinfo/capingfang.vue | 10 +++++----- src/views/modules/cabaseinfo/carental.vue | 8 ++++---- src/views/modules/cabaseinfo/caresident.vue | 8 ++++---- src/views/modules/cabaseinfo/carotators.vue | 8 ++++---- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/views/modules/cabaseinfo/caloudong.vue b/src/views/modules/cabaseinfo/caloudong.vue index c8749627..4f7118bc 100644 --- a/src/views/modules/cabaseinfo/caloudong.vue +++ b/src/views/modules/cabaseinfo/caloudong.vue @@ -49,13 +49,6 @@ align="center" width="50" > - - + + @@ -181,7 +181,7 @@ export default { }, methods:{ getloudongOptions(){ - this.$http.post(`/opendata/bmGrid/getCascadeMenu`).then(resp => { + this.$http.post(`/opendata/cabmGrid/getCascadeMenu`).then(resp => { if(resp.data.code === 0){ this.caLouDongOptions = this.removeEmptySubOrgList(resp.data.data) } diff --git a/src/views/modules/cabaseinfo/carental.vue b/src/views/modules/cabaseinfo/carental.vue index 40697e38..9392fa23 100644 --- a/src/views/modules/cabaseinfo/carental.vue +++ b/src/views/modules/cabaseinfo/carental.vue @@ -57,15 +57,15 @@ width="50" > diff --git a/src/views/modules/cabaseinfo/caresident.vue b/src/views/modules/cabaseinfo/caresident.vue index 03e06553..8b91e76a 100644 --- a/src/views/modules/cabaseinfo/caresident.vue +++ b/src/views/modules/cabaseinfo/caresident.vue @@ -53,15 +53,15 @@ width="50" > diff --git a/src/views/modules/cabaseinfo/carotators.vue b/src/views/modules/cabaseinfo/carotators.vue index 52d12b94..f6068f2b 100644 --- a/src/views/modules/cabaseinfo/carotators.vue +++ b/src/views/modules/cabaseinfo/carotators.vue @@ -53,15 +53,15 @@ width="50" >