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);