From 84d2bd56893c2283c1ec98f126f55aa13b044f34 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Wed, 15 Nov 2023 16:05:05 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=89=80=E5=B1=9E=E7=BD=91?= =?UTF-8?q?=E6=A0=BC=E5=8A=A0agencyId=E5=85=A5=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/communityService/labelConfig/addForm.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/modules/communityService/labelConfig/addForm.vue b/src/views/modules/communityService/labelConfig/addForm.vue index c9a13a1b1..0a48c9bf3 100644 --- a/src/views/modules/communityService/labelConfig/addForm.vue +++ b/src/views/modules/communityService/labelConfig/addForm.vue @@ -437,7 +437,6 @@ export default { }, // 字段名称修改 async handleChangeFieldsName(row, index, type, state) { - console.log(row); if (!state) { this.changeFormState = true; } @@ -455,8 +454,6 @@ export default { // this.tableData[index].colVal = '' // this.tableData[index].queryType = '' } else if ((row.dataSource == "resi"||row.dataSource == "house") && row.itemId != "") { - - console.log(row); arr = row.itemIdOpction.filter((item) => item.itemId == row.itemId); this.tableData[index].tableName = arr[0].tableName; this.tableData[index].colKey = arr[0].columnName; @@ -478,6 +475,11 @@ export default { params = JSON.parse(arr[0].optionSourceParam); } else { url = arr[0].optionSourceValue; + if(url == '/gov/org/customergrid/gridoption'){ + params = { + agencyId: this.$store.state.user.agencyId , + } + } } const { data, code, msg } = await requestPost(url, params);