From decb93753a59a8c1ef97edf2b05adf9b914bad31 Mon Sep 17 00:00:00 2001 From: luyan Date: Thu, 6 Apr 2023 14:57:12 +0800 Subject: [PATCH 01/34] =?UTF-8?q?=E5=B8=82=E5=8C=97=E5=8C=BA=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=B1=85=E6=B0=91=E4=BF=A1=E6=81=AF=E6=89=80=E5=B1=9E?= =?UTF-8?q?=E7=BB=84=E7=BB=87=E5=A4=9A=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/views/components/resiSearch.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 76454b2f6..c256d3319 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "jsencrypt": "3.0.3", "lodash": "4.17.15", "mint-ui": "2.2.13", - "node-sass": "4.12.0", + "node-sass": "^4.12.0", "ol": "6.9.0", "portfinder": "1.0.21", "proj4": "2.8.0", diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 0caa14e6c..60e4b748c 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -308,7 +308,7 @@ export default { HOME_ID: '' } let orgOptionProps = { - multiple: false, + multiple: true,// 市北项目开启多选,2023-04-06 value: 'agencyId', label: 'agencyName', children: 'subAgencyList', From e16a9e2acf82caf3019e0c57a3ae28be8af9ad23 Mon Sep 17 00:00:00 2001 From: luyan Date: Thu, 6 Apr 2023 15:36:17 +0800 Subject: [PATCH 02/34] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=9A=E9=80=89?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 22 +++++++++++++++------- src/views/modules/base/resi.vue | 14 +------------- 2 files changed, 16 insertions(+), 20 deletions(-) diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 60e4b748c..721c3bf75 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -302,6 +302,7 @@ export default { let constForm = { ...form, GRID_ID: '', + GRID_IDS: '', VILLAGE_ID: '', BUILD_ID: '', UNIT_ID: '', @@ -341,7 +342,9 @@ export default { form: { ...form, AGENCY_ID: '', + AGENCY_IDS: '', GRID_ID: '', + GRID_IDS:'', VILLAGE_ID: '', BUILD_ID: '', UNIT_ID: '', @@ -381,7 +384,7 @@ export default { }, queryType:{ - 'AGENCY_ID':'like' + 'AGENCY_ID':'list_equal' } } }, @@ -518,17 +521,22 @@ export default { handleChangeAgency(val) { let obj = this.$refs["myCascader"].getCheckedNodes()[0].data if (obj) { + //市北定制化需求,组织与网格多选 if(obj.level === 'grid'){ - this.form.GRID_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; + // this.form.GRID_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; + this.form.GRID_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; this.form.AGENCY_ID='' }else{ - this.form.AGENCY_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; + this.form.AGENCY_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; + // this.form.AGENCY_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; this.form.GRID_ID = '' } }else{ - this.form.AGENCY_ID='' - this.form.GRID_ID = '' + // this.form.AGENCY_ID='' + // this.form.GRID_ID = '' + this.form.AGENCY_IDS='' + this.form.GRID_IDS = '' } this.form.VILLAGE_ID = '' @@ -641,8 +649,8 @@ export default { const { user } = this.$store.state this.$http .post('/gov/org/icneighborhood/neighborhoodoption', { - gridId: this.form.GRID_ID, - agencyId: this.form.AGENCY_ID, + gridIds: this.form.GRID_IDS, + agencyIds: this.form.AGENCY_IDS, // agencyId: user.agencyId }) .then(({ data: res }) => { diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue index 750e0087c..85d4d8fc2 100644 --- a/src/views/modules/base/resi.vue +++ b/src/views/modules/base/resi.vue @@ -656,14 +656,9 @@ export default { handleSearchFrom () { let arr = []; this.searchList.forEach((item) => { - const arr1 = - this.$refs[`resiSearch${item.itemGroupId}`][0].handleSearch(); + const arr1 = this.$refs[`resiSearch${item.itemGroupId}`][0].handleSearch(); arr = arr.concat(arr1); - // console.log('search-----refs', this.$refs[`resiSearch${item.itemGroupId}`]) }); - console.log("search-----refs", this.$refs); - - console.log("search-----arr", arr); this.currentPage = 1; this.conditions = arr; this.getTableData(); @@ -675,10 +670,6 @@ export default { this.getTableData(); }, resetSearchForm (formName) { - // for(const n in this.form) { - // this.form[n] = '' - // } - // this.handleSearch() this.searchList.forEach((item) => { this.$refs[`resiSearch${item.itemGroupId}`][0].resetForm(); // console.log('search-----refs', this.$refs[`resiSearch${item.itemGroupId}`]) @@ -1246,15 +1237,12 @@ export default { if (res.code !== 0) { return this.$message.error(res.msg); } else { - console.log("获取查询详情成功--sss", res); - res.data.forEach((item) => { item.queryItemList.forEach((n) => { if (n.optionSourceType === "remote") { this.getOptionsList(n.optionSourceValue).then((res) => { n.options = this.getTreeData(res); }); - // console.log('') } else if (n.itemType == "radio" && n.options.length == 0) { n.options = [ { From 6073b8a4cb6897906a8c2f43eb0efc007258a3a0 Mon Sep 17 00:00:00 2001 From: luyan Date: Thu, 6 Apr 2023 17:08:44 +0800 Subject: [PATCH 03/34] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 721c3bf75..5769a0ebc 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -342,9 +342,9 @@ export default { form: { ...form, AGENCY_ID: '', - AGENCY_IDS: '', + AGENCY_IDS: [], GRID_ID: '', - GRID_IDS:'', + GRID_IDS:[], VILLAGE_ID: '', BUILD_ID: '', UNIT_ID: '', @@ -520,23 +520,15 @@ export default { }, handleChangeAgency(val) { let obj = this.$refs["myCascader"].getCheckedNodes()[0].data + console.log('val====',val); + console.log('obj====',obj); if (obj) { //市北定制化需求,组织与网格多选 - if(obj.level === 'grid'){ - // this.form.GRID_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; - this.form.GRID_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; - this.form.AGENCY_ID='' - }else{ - this.form.AGENCY_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; - // this.form.AGENCY_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; - this.form.GRID_ID = '' - } - + this.form.GRID_IDS.push(obj.agencyId); + this.form.AGENCY_IDS.push( obj.pid); }else{ - // this.form.AGENCY_ID='' - // this.form.GRID_ID = '' - this.form.AGENCY_IDS='' - this.form.GRID_IDS = '' + this.form.AGENCY_IDS=[] + this.form.GRID_IDS = [] } this.form.VILLAGE_ID = '' From ff682c24b4007495e483fa46428f4032b313a216 Mon Sep 17 00:00:00 2001 From: luyan Date: Thu, 6 Apr 2023 17:09:10 +0800 Subject: [PATCH 04/34] =?UTF-8?q?=E7=A7=BB=E9=99=A4log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 5769a0ebc..e4e46366e 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -520,8 +520,6 @@ export default { }, handleChangeAgency(val) { let obj = this.$refs["myCascader"].getCheckedNodes()[0].data - console.log('val====',val); - console.log('obj====',obj); if (obj) { //市北定制化需求,组织与网格多选 this.form.GRID_IDS.push(obj.agencyId); @@ -538,7 +536,6 @@ export default { this.getValiheList() }, handleChangeGrid(val) { - console.log('val', val) this.form.VILLAGE_ID = '' this.form.BUILD_ID = '' this.form.UNIT_ID = '' @@ -546,7 +543,6 @@ export default { this.getValiheList() }, handleChangeV(val) { - console.log('val', val) this.form.BUILD_ID = '' this.form.UNIT_ID = '' this.form.HOME_ID = '' @@ -599,7 +595,6 @@ export default { } } } - console.log('fixedList----999', this.fixedList) this.tempFormList.forEach((item) => { if (item.columnName === val) item.isChange = true }) From d4f16929ffc93b8d388dca8e059bb49b5404f574 Mon Sep 17 00:00:00 2001 From: wxz Date: Fri, 7 Apr 2023 03:03:51 +0800 Subject: [PATCH 05/34] =?UTF-8?q?fix:=E5=B1=85=E6=B0=91=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E7=BB=84=E7=BB=87=E5=A4=9A=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 69 ++++++++++++++++++++++------- src/views/modules/base/resi.vue | 2 +- 2 files changed, 54 insertions(+), 17 deletions(-) diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index e4e46366e..64173307a 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -242,6 +242,7 @@ diff --git a/src/views/main-shuju/main.vue b/src/views/main-shuju/main.vue index e1026e6fd..06839ba0e 100644 --- a/src/views/main-shuju/main.vue +++ b/src/views/main-shuju/main.vue @@ -1,30 +1,33 @@ From 71346cbe8f913a8f1e929a1d7de3597fc3a29715 Mon Sep 17 00:00:00 2001 From: dai <851733175@qq.com> Date: Mon, 10 Apr 2023 13:52:22 +0800 Subject: [PATCH 08/34] =?UTF-8?q?=E4=BF=AE=E6=94=B9iframe=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/main-shuju/main-content.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/main-shuju/main-content.vue b/src/views/main-shuju/main-content.vue index b9914005e..770032932 100644 --- a/src/views/main-shuju/main-content.vue +++ b/src/views/main-shuju/main-content.vue @@ -18,7 +18,7 @@ height="100%" frameborder="0" scrolling="yes" - :style="{ height: $store.state.fixed1920.height - 100 + 'px' }" + :style="{ width: '1920px', height: $store.state.fixed1920.height+ 'px' }" /> From 683f7cb4ff2d00c38c83f10da331fdccf4ee00fb Mon Sep 17 00:00:00 2001 From: dai <851733175@qq.com> Date: Mon, 10 Apr 2023 13:56:53 +0800 Subject: [PATCH 09/34] =?UTF-8?q?=E6=8A=8Aenv=E6=96=87=E4=BB=B6=E8=BF=98?= =?UTF-8?q?=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.development b/.env.development index d38c11f03..ea43786c3 100644 --- a/.env.development +++ b/.env.development @@ -1,13 +1,13 @@ NODE_ENV=development -# VUE_APP_API_SERVER = http://192.168.1.140/api +VUE_APP_API_SERVER = http://192.168.1.140/api # VUE_APP_API_SERVER = https://epmet-yantai.elinkservice.cn/api # VUE_APP_API_SERVER = https://epmet-test.elinkservice.cn/api # VUE_APP_API_SERVER = https://epmet-cloud.elinkservice.cn/api # VUE_APP_API_SERVER = https://epdc-shibei.elinkservice.cn/api # VUE_APP_API_SERVER = https://epmet-dev.elinkservice.cn:41080/api # VUE_APP_API_SERVER = https://epmet-dev.elinkservice.cn/api -VUE_APP_API_SERVER = https://epmet-panshi.elinkservice.cn/api +# VUE_APP_API_SERVER = https://epmet-panshi.elinkservice.cn/api # VUE_APP_NODE_ENV=dev_sdtdt VUE_APP_NODE_ENV=dev From 5601e60c105d76b8f6d7c0d8f0b7f9fd568e2bcd Mon Sep 17 00:00:00 2001 From: dai <851733175@qq.com> Date: Mon, 17 Apr 2023 16:03:54 +0800 Subject: [PATCH 10/34] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E8=AE=B0=E5=BD=9508?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../communityService/fuwujilu/fuwuList08.vue | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/views/modules/communityService/fuwujilu/fuwuList08.vue diff --git a/src/views/modules/communityService/fuwujilu/fuwuList08.vue b/src/views/modules/communityService/fuwujilu/fuwuList08.vue new file mode 100644 index 000000000..e7db1167e --- /dev/null +++ b/src/views/modules/communityService/fuwujilu/fuwuList08.vue @@ -0,0 +1,34 @@ + + + + + From ffb711a34dc7a16151bf71fc79a946cd2c623e46 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Wed, 19 Apr 2023 17:07:14 +0800 Subject: [PATCH 11/34] =?UTF-8?q?=E5=B1=85=E6=B0=91=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E5=B1=85=E6=B0=91=E9=9C=80=E6=B1=82=E4=B8=8B=E6=8B=89=E6=A1=86?= =?UTF-8?q?=E4=BC=A0=E5=80=BC=E5=8D=95=E4=B8=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 812de530f..3f964c6d3 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -211,6 +211,7 @@ clearable size="small" class="resi-cell-select" + @change="handelChangeCascader($event,n.columnName)" >