From 1bdb14c0d8ed9bc0d39344921fc87e00682c18d9 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Fri, 12 Apr 2024 14:16:58 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E6=9F=B1=E7=8A=B6=E5=9B=BE=E6=96=87?= =?UTF-8?q?=E5=AD=97=E6=97=8B=E8=BD=AC,=E5=B1=85=E6=B0=91=E7=94=BB?= =?UTF-8?q?=E5=83=8F=E5=A7=93=E5=90=8D,=E6=88=BF=E5=B1=8B=E7=94=BB?= =?UTF-8?q?=E5=83=8F=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/home/index.vue | 5 ++++- src/views/modules/portrayal/house/cpts/graph.vue | 6 ++---- src/views/modules/portrayal/jumin/cpts/graph.vue | 4 +--- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/views/modules/home/index.vue b/src/views/modules/home/index.vue index 562fa9533..3fc55169b 100644 --- a/src/views/modules/home/index.vue +++ b/src/views/modules/home/index.vue @@ -689,7 +689,10 @@ export default { }], xAxis: [{ type: 'category', - data: xData + data: xData, + axisLabel: { + rotate: 50 // 设置旋转角度为45度 + } }], series: [{ name: '分类信息完整数', diff --git a/src/views/modules/portrayal/house/cpts/graph.vue b/src/views/modules/portrayal/house/cpts/graph.vue index ffdbb1acc..bae685bd7 100644 --- a/src/views/modules/portrayal/house/cpts/graph.vue +++ b/src/views/modules/portrayal/house/cpts/graph.vue @@ -72,9 +72,7 @@ export default { let familyList = data.map((item, index) => ({ 'id': `N${index + 1}`, 'text': item.name, - 'innerHTML': `
${item.type == 1?`${item.name}`:item.name.length === 2 ? - item.name.substring(0, 1) + '*' : - item.name.substring(0, 1) + '*' + item.name.substring(2)} ${item.age?`(${item.age})岁`:''}
`, + 'innerHTML': `
${item.name}${item.age?`(${item.age})岁`:''}
`, 'data':{id: item.id,type:item.type,name:item.name}, })) @@ -83,7 +81,7 @@ export default { let lineList = data.map((item, index) => ({ 'from': 'N1', 'to': `N${index + 1}`, - 'text':item.type ==1?'未知':data[index].houseHolderRel || '自住', + 'text':item.type ==1?'未知':data[index].houseHolderRel || '未知', 'isHideArrow': true, 'color': item.houseHolderRel === '父亲' ? '#3876f2' : (item.houseHolderRel === '母亲' || item.houseHolderRel === '祖父母' ? '#ff9696' : (item.houseHolderRel === '女儿' ? '#ffd5d5' : '#3876f2')), 'fontColor': item.houseHolderRel === '父亲' ? '#3876f2' : (item.houseHolderRel === '母亲' || item.houseHolderRel === '祖父母' ? '#ff9696' : (item.houseHolderRel === '女儿' ? '#ffd5d5' : '#3876f2')) diff --git a/src/views/modules/portrayal/jumin/cpts/graph.vue b/src/views/modules/portrayal/jumin/cpts/graph.vue index f3aa9760a..f8b3d2caf 100644 --- a/src/views/modules/portrayal/jumin/cpts/graph.vue +++ b/src/views/modules/portrayal/jumin/cpts/graph.vue @@ -69,9 +69,7 @@ export default { let familyList = data.map((item, index) => ({ 'id': `N${index + 1}`, 'text': item.name, - 'innerHTML': `
${item.type == 1?`${item.name}`:item.name.length === 2 ? - item.name.substring(0, 1) + '*' : - item.name.substring(0, 1) + '*' + item.name.substring(2)} ${item.age?`(${item.age})岁`:''}
`, + 'innerHTML': `
${item.name}${item.age?`(${item.age})岁`:''}
`, 'data':{id: item.id,type:item.type,name:item.name}, })) let lineList = data.map((item, index) => ({ From a33d016e2e2ad7caabd92fbb390feb5d5329e95d Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Fri, 12 Apr 2024 15:04:23 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E6=99=BA=E8=83=BD=E6=8F=90=E9=86=92?= =?UTF-8?q?=E5=B7=B2=E8=AF=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/home/index.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/modules/home/index.vue b/src/views/modules/home/index.vue index 3fc55169b..727cf2129 100644 --- a/src/views/modules/home/index.vue +++ b/src/views/modules/home/index.vue @@ -434,7 +434,17 @@ export default { this.$message.error(msg); } }, + async readClearOne(item) { + const url = `/message/intelligentMessage/msg/clearOne/?msgId=${item.id}`; + const { data, code, msg } = await requestPost(url); + if (code == 0) { + this.getNoticeData(); + } else if (code >= 8000) { + this.$message.error(msg); + } + }, handleClickNotice(item) { + this.readClearOne(item); if (item.msgType == "community_house") { let { agencyId, gridId, gridName, houseId, houseName, targetId } = item this.$store.dispatch('saveDataH', { agencyId, gridId, gridName, houseId: targetId, houseName:'房屋详情' }); From a4aaccee8d5ee4fc1ea697b47d5239f8ca328e6b Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Fri, 12 Apr 2024 16:05:46 +0800 Subject: [PATCH 3/9] =?UTF-8?q?=E5=88=97=E8=A1=A8=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/base/nonIntResi/nonIntResi.vue | 2 +- src/views/modules/base/resi.vue | 29 +++++++++++++------ src/views/modules/home/index.vue | 21 ++++++++++---- 3 files changed, 36 insertions(+), 16 deletions(-) diff --git a/src/views/modules/base/nonIntResi/nonIntResi.vue b/src/views/modules/base/nonIntResi/nonIntResi.vue index c5b6082bb..bf5cbcf52 100644 --- a/src/views/modules/base/nonIntResi/nonIntResi.vue +++ b/src/views/modules/base/nonIntResi/nonIntResi.vue @@ -497,7 +497,7 @@ export default { const { data, code, msg } = await requestGet(url, { pageSize, pageNo, - resultScopeType: "nonIntegrity", + resultScopeType: this.$route.query.type || null, resiCategory: this.$route.query.resiCategory || null, //首页传参进来 ...formData, }); diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue index 263297e0d..88ffec066 100644 --- a/src/views/modules/base/resi.vue +++ b/src/views/modules/base/resi.vue @@ -444,10 +444,10 @@ export default { categoryKey: "resi_info", }, }); - this.handleSearchFrom(); + // this.handleSearchFrom(); }, activated() { - this.handleSearchFrom(); + // this.handleSearchFrom(); }, methods: { mouseOverNode(event) { @@ -1179,19 +1179,30 @@ export default { watch: { $route: { handler: function (newVal, oldVal) { - // console.log(newVal, oldVal) if (newVal.name == "base-resi") { this.$nextTick(() => { - if (newVal.params.category) { - this.$refs.myResiSearch.form.categoryKey = []; - this.$refs.myResiSearch.form.categoryKey.push( + this.$refs.myResiSearch.form.attentionCrowds = []; + this.$refs.myResiSearch.form.healthStatus = []; + this.$refs.myResiSearch.form.specialCategoryCodes = []; + this.$refs.myResiSearch.form.partyFlag=null; + if (newVal.params.category === 'SPECIAL_SUPPORT_FLAG' ||newVal.params.category === 'SUBSISTENCE_ALLOWANCE_FLAG'|| newVal.params.category === 'VETERAN_FLAG'|| newVal.params.category === 'ENSURE_HOUSE_FLAG'|| newVal.params.category === 'OLD_PEOPLE_FLAG') { + this.$refs.myResiSearch.form.attentionCrowds.push( newVal.params.category ); + this.handleSearchFrom(); + } else if(newVal.params.category === 'CHRONIC_DISEASE_FLAG' ||newVal.params.category === 'SERIOUS_ILLNESS_FLAG'||newVal.params.category === 'DISABILITY_FLAG'){ + this.$refs.myResiSearch.form.healthStatus.push( + newVal.params.category + ); + this.handleSearchFrom(); + }else if(newVal.params.category === 'SPECIAL_CROWD_FLAG'){ + this.$refs.myResiSearch.form.specialCategoryCodes = ["anzhibangjiao","shequjiaozheng","xidurenyuan","buliangqingshaonian","zhaoshizhaohuojingshenbing","xiejiaorenyuan"]; + this.handleSearchFrom(); + }else if(newVal.params.category === 'PARTY_FLAG'){ + this.$refs.myResiSearch.form.partyFlag =1; this.handleSearchFrom(); - } else { - // this.$refs.myResiSearch.form.categoryKey = [] - // this.handleSearchFrom() } + }); } }, diff --git a/src/views/modules/home/index.vue b/src/views/modules/home/index.vue index 727cf2129..d5f1bb9f1 100644 --- a/src/views/modules/home/index.vue +++ b/src/views/modules/home/index.vue @@ -161,17 +161,17 @@ @@ -181,7 +181,7 @@ @@ -489,7 +489,7 @@ export default { } this.getNoticeData() }, - + toNoticePage() { this.$router.push({ path: "/main/home-notice", @@ -590,11 +590,20 @@ export default { this.$message.error(msg); } }, - handelCLickJump(e){ + handelClickToResi(e){ + this.$router.push({ + name: "base-resi", + params: { + category: e.residentCategory, + }, + }); + }, + handelCLickJump(e,type){ this.$router.push({ path: "/main/base-nonIntResi", query: { resiCategory: e.residentCategory, + type:type } }); }, From ad0713da060d32b2cd941f7c39575ad79daabd77 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Fri, 12 Apr 2024 17:09:58 +0800 Subject: [PATCH 4/9] =?UTF-8?q?=E5=85=A8=E9=83=A8v-model=E5=8A=A0.trim?= =?UTF-8?q?=E4=BF=AE=E9=A5=B0=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ren-dept-tree/src/ren-dept-tree.vue | 4 +- .../ren-process-running/src/ren-task-back.vue | 2 +- .../src/ren-task-entrust.vue | 2 +- .../src/ren-task-handle.vue | 2 +- .../ren-process-running/src/select-user.vue | 2 +- .../ren-region-tree/src/ren-region-tree.vue | 4 +- src/views/components/CForm.vue | 40 +- src/views/components/CTable.vue | 2 +- src/views/components/CTableNoPage.vue | 2 +- src/views/components/CTree.vue | 2 +- src/views/components/CTreeDialogSingle.vue | 2 +- src/views/components/addResi.vue | 70 +- src/views/components/checkBox.vue | 4 +- src/views/components/editResi.vue | 70 +- src/views/components/rangeInput.vue | 4 +- src/views/components/resiChangeTransfer.vue | 12 +- .../components/resiExpand/editExpand.vue | 6 +- src/views/components/resiExpand/index.vue | 6 +- src/views/components/resiForm.vue | 22 +- src/views/components/resiInfo.vue | 2 +- src/views/components/resiSearch.vue | 38 +- src/views/components/resiTransfer.vue | 6 +- src/views/components/scoreRecord.vue | 2 +- src/views/components/smartSearchRule.vue | 30 +- .../components/tinymce/example/Index.vue | 2 +- src/views/components/tinymce2/index.vue | 4 +- .../cpts/family/modules/BusinessRecords.vue | 2 +- .../dataBoard/cpts/homeDetails/index.vue | 6 +- .../personnel/modules/BusinessRecords.vue | 2 +- src/views/dataBoard/cpts/resi-details.vue | 2 +- .../dataBoard/fifteen/components/index.vue | 2 +- .../dataBoard/overview/components/Bmysxxq.vue | 10 +- .../overview/components/DemandCharts.vue | 2 +- .../overview/components/DemandCharts2.vue | 2 +- .../overview/components/EventAndFollowUp.vue | 2 +- .../components/EventDispatchOrder/Assign.vue | 8 +- .../EventDispatchOrder/TransferService.vue | 20 +- .../components/EventDispatchOrder/index.vue | 2 +- .../components/MapDialog/DemandList.vue | 2 +- .../components/MapDialog/DisputeDispatch.vue | 2 +- .../components/MapDialog/ResourceDispatch.vue | 2 +- .../components/MapResourceInfoMore.vue | 2 +- .../overview/components/ServiceDetails.vue | 4 +- .../overview/components/Supervision.vue | 2 +- .../dataBoard/overview/components/jdjs.vue | 2 +- .../dataBoard/overview/components/map-top.vue | 4 +- .../overview/potentialPeople/index.vue | 4 +- src/views/dataBoard/renfang/index.vue | 2 +- src/views/dataBoard/renfang/resi/class.vue | 2 +- src/views/dataBoard/renfang/resi/classNew.vue | 36 +- .../Problem/tddtlxsj/list.vue | 2 +- .../Problem/tyqybtlx/list.vue | 2 +- .../satisfactionEval/Problem/tyry/list.vue | 2 +- .../dissatisfieReason/detail.vue | 42 +- .../dissatisfieReason/index.vue | 4 +- .../satisfactionEval/dissatisfied/index.vue | 8 +- .../dataBoard/satisfactionEval/index.vue | 2 +- .../modules/PersonnelPortrait/index.vue | 4 +- .../modules/SelfTrend/index.vue | 2 +- .../modules/TypesOfDissatisfaction/index.vue | 4 +- .../modules/eventAnalysis/index.vue | 6 +- .../potentialPeople/index.vue | 4 +- src/views/dataBoard/sida/fuwu/list.vue | 6 +- src/views/dataBoard/sida/index.vue | 2 +- src/views/dataBoard/sida/wt/eventList.vue | 4 +- .../dataBoard/sida/wt/hiddenDangerList.vue | 4 +- .../dataBoard/sida/wt/specialCategoryList.vue | 4 +- src/views/dataBoard/sida/xq/list.vue | 6 +- src/views/dataBoard/sida/zy/goodsResList.vue | 4 +- src/views/dataBoard/sida/zy/peopleResList.vue | 4 +- src/views/dataBoard/sida/zy/placeResList.vue | 4 +- src/views/dataBoardMain/main-navbar.vue | 2 +- src/views/main-content.vue | 2 +- .../main-navbar-update-password-work.vue | 6 +- src/views/main-navbar-update-password.vue | 6 +- src/views/main-shuju/main-theme-tools.vue | 6 +- .../demo/correction-add-or-update.vue | 10 +- .../activiti/demo/correction-process.vue | 10 +- .../modules/activiti/model-add-or-update.vue | 6 +- src/views/modules/activiti/model.vue | 4 +- src/views/modules/activiti/my-apply.vue | 2 +- src/views/modules/activiti/my-join-task.vue | 2 +- .../modules/activiti/my-todo-task-pool.vue | 2 +- src/views/modules/activiti/my-todo-task.vue | 2 +- .../modules/activiti/process-biz-route.vue | 2 +- .../modules/activiti/process-initiation.vue | 4 +- src/views/modules/activiti/process.vue | 4 +- src/views/modules/activiti/running.vue | 4 +- src/views/modules/base/collect.vue | 14 +- .../modules/base/community/buildForm.vue | 24 +- .../modules/base/community/buildTable.vue | 2 +- .../modules/base/community/community.vue | 18 +- .../base/community/communityExportInfo.vue | 12 +- .../modules/base/community/communityForm.vue | 20 +- src/views/modules/base/community/roomForm.vue | 26 +- .../modules/base/community/roomTable.vue | 2 +- src/views/modules/base/diyInfo.vue | 12 +- src/views/modules/base/grid.vue | 4 +- .../modules/base/huji/chusheng/cpts/edit.vue | 26 +- .../modules/base/huji/chusheng/index.vue | 8 +- .../base/huji/houseChange/houseChangeList.vue | 4 +- .../modules/base/huji/immigration/edit.vue | 26 +- .../modules/base/huji/immigration/index.vue | 8 +- .../migration/records/transferBuilding.vue | 4 +- .../migration/records/transferCommunity.vue | 4 +- .../modules/base/nonIntResi/nonIntResi.vue | 12 +- .../base/organization/organization.vue | 132 +-- src/views/modules/base/resi.vue | 4 +- .../housingNature/addForm.vue | 44 +- .../housingNature/housingNature.vue | 24 +- .../residentManagement/louzhang/addForm.vue | 12 +- .../louzhang/louzhangList.vue | 8 +- .../residentManagement/oldPeople/addForm.vue | 46 +- .../oldPeople/oldPeople.vue | 20 +- .../publicWelfarePost/addForm.vue | 34 +- .../publicWelfarePost/publicWelfarePost.vue | 18 +- .../resiDisability/addForm.vue | 36 +- .../resiDisability/resiDisability.vue | 28 +- .../subsistenceAllowance/addForm.vue | 36 +- .../subsistenceAllowance.vue | 16 +- .../base/residentManagement/tefu/addForm.vue | 40 +- .../base/residentManagement/tefu/tefuList.vue | 16 +- .../unemployment/addForm.vue | 50 +- .../unemployment/unemployment.vue | 36 +- .../residentManagement/veteran/addForm.vue | 52 +- .../residentManagement/veteran/veteran.vue | 40 +- .../residentManagement/volunteer/addForm.vue | 34 +- .../volunteer/volunteer.vue | 26 +- src/views/modules/base/roomForm.vue | 24 +- .../base/smartImport/cpts/createdTask.vue | 8 +- src/views/modules/base/smartImport/index.vue | 6 +- src/views/modules/base/visitor.vue | 2 +- .../cabaseinfo/caloudong-add-or-update.vue | 48 +- src/views/modules/cabaseinfo/caloudong.vue | 8 +- .../cabaseinfo/capingfang-add-or-update.vue | 48 +- src/views/modules/cabaseinfo/capingfang.vue | 8 +- .../cabaseinfo/carental-add-or-update.vue | 36 +- src/views/modules/cabaseinfo/carental.vue | 10 +- .../cabaseinfo/caresident-add-or-update.vue | 34 +- src/views/modules/cabaseinfo/caresident.vue | 10 +- .../cabaseinfo/carotators-add-or-update.vue | 36 +- .../cabaseinfo/carotators-binding-house.vue | 4 +- src/views/modules/cabaseinfo/carotators.vue | 10 +- src/views/modules/cabaseinfo/wghSjxxb.vue | 26 +- .../modules/commonDemand/commonDemandForm.vue | 6 +- .../communityParty/article/cpts/offline.vue | 2 +- .../modules/communityParty/calendar/index.vue | 8 +- .../modules/communityParty/elegant/index.vue | 22 +- .../communityParty/heart/heartAudit.vue | 2 +- .../communityParty/heart/heartFinish.vue | 10 +- .../communityParty/heart/heartForm.vue | 46 +- .../communityParty/heart/heartList.vue | 10 +- .../communityParty/heart/heartReview.vue | 2 +- .../modules/communityParty/members/create.vue | 46 +- .../modules/communityParty/members/detail.vue | 46 +- .../communityParty/members/memberList.vue | 30 +- .../communityParty/members/payRecord.vue | 14 +- .../modules/communityParty/members/points.vue | 28 +- .../modules/communityParty/members/update.vue | 46 +- .../activivityList/activivityList.vue | 14 +- .../activivityList/addActivity.vue | 20 +- .../orgActivity/activivityList/addRule.vue | 18 +- .../activivityList/scheduleForm.vue | 10 +- .../activivityList/scheduleList.vue | 18 +- .../activivityList/yearplanList.vue | 4 +- .../communityParty/partyOrg/centerMember.vue | 6 +- .../communityParty/partyOrg/create.vue | 14 +- .../partyOrg/select_principal.vue | 4 +- .../communityParty/partyOrg/update.vue | 8 +- .../regionalParty/activitys.vue | 10 +- .../regionalParty/activitysForm.vue | 24 +- .../regionalParty/finishList.vue | 12 +- .../communityParty/regionalParty/units.vue | 10 +- .../regionalParty/unitsForm.vue | 20 +- .../modules/communityParty/stas/index.vue | 4 +- .../communityService/commonDemand/addForm.vue | 34 +- .../commonDemand/editForm.vue | 40 +- .../communityService/commonDemand/index.vue | 12 +- .../communityService/dqfwzx/cpts/edit.vue | 24 +- .../communityService/dqfwzx/cpts/order.vue | 12 +- .../dqfwzx/cpts/orderList.vue | 2 +- .../communityService/fuwujilu/addForm.vue | 38 +- .../communityService/fuwujilu/editForm.vue | 32 +- .../communityService/fuwujilu/fuwuList.vue | 14 +- .../communityService/fuwujiluOld/addForm.vue | 34 +- .../fuwujiluOld/detailForm.vue | 32 +- .../communityService/fuwujiluOld/fuwuList.vue | 14 +- .../fuwuxiangmu/cpts/edit.vue | 10 +- .../communityService/fuwuxiangmu/index.vue | 8 +- .../communityService/fuwuzhaoren/addForm.vue | 32 +- .../communityService/fuwuzhaoren/editForm.vue | 36 +- .../communityService/fuwuzhaoren/index.vue | 16 +- .../fuwuzhaoren/personList.vue | 16 +- .../communityService/fuwuzuzhi/cpts/edit.vue | 16 +- .../communityService/fuwuzuzhi/index.vue | 8 +- .../gangweizhaoren/addForm.vue | 34 +- .../gangweizhaoren/editForm.vue | 36 +- .../communityService/gangweizhaoren/index.vue | 16 +- .../gangweizhaoren/personList.vue | 16 +- .../modules/communityService/gxxq/addForm.vue | 20 +- .../modules/communityService/gxxq/index.vue | 10 +- .../jinengzhaoren/addForm.vue | 34 +- .../jinengzhaoren/editForm.vue | 36 +- .../communityService/jinengzhaoren/index.vue | 16 +- .../jinengzhaoren/personList.vue | 16 +- .../communityService/labelConfig/addForm.vue | 24 +- .../communityService/labelConfig/index.vue | 2 +- .../communityService/measure/index.vue | 64 +- .../modules/communityService/measure/info.vue | 46 +- .../communityService/measure/points.vue | 18 +- .../ninePlaces/inspect/inspect.vue | 10 +- .../ninePlaces/inspect/inspectForm.vue | 18 +- .../ninePlaces/inspect/inspectReview.vue | 8 +- .../ninePlaces/places/places.vue | 10 +- .../ninePlaces/places/placesForm.vue | 14 +- .../communityService/ninePlaces/team/team.vue | 8 +- .../ninePlaces/team/teamForm.vue | 18 +- .../communityService/policy/addPolicy.vue | 26 +- .../communityService/policy/detailForm.vue | 32 +- .../communityService/policy/personList.vue | 16 +- .../policy/personListItem.vue | 8 +- .../communityService/policy/policyList.vue | 12 +- .../modules/communityService/policy/rule.vue | 54 +- .../communityService/shzz/cpts/edit.vue | 20 +- .../modules/communityService/shzz/index.vue | 12 +- .../communityService/sqzzz/cpts/edit.vue | 24 +- .../modules/communityService/sqzzz/index.vue | 6 +- .../wennuanzhaoren/addForm.vue | 34 +- .../wennuanzhaoren/editForm.vue | 36 +- .../communityService/wennuanzhaoren/index.vue | 16 +- .../wennuanzhaoren/personList.vue | 16 +- .../communityService/worklog/workLog.vue | 14 +- .../communityService/worklog/workLogForm.vue | 18 +- src/views/modules/cpts/base/cpts/edit.vue | 26 +- src/views/modules/cpts/base/index.vue | 10 +- src/views/modules/cpts/base2/cpts/edit.vue | 22 +- src/views/modules/cpts/base2/index.vue | 12 +- .../customer/customize/CategoryEdit.vue | 4 +- .../customer/customize/CategoryList.vue | 2 +- .../modules/customer/customize/ConfigEdit.vue | 6 +- .../modules/customer/customize/ConfigItem.vue | 8 +- .../customer/customize/CustomerList.vue | 2 +- .../modules/customer/customize/MiniHome.vue | 4 +- .../modules/customer/customize/MostList.vue | 24 +- .../modules/customer/customize/RoleAuth.vue | 8 +- .../modules/customer/customize/StartPage.vue | 4 +- .../modules/customer/customize/editSys.vue | 2 +- .../modules/customer/customize/roleList.vue | 6 +- .../customer/feedback/CustomerInfo.vue | 2 +- .../modules/customer/feedback/DetailForm.vue | 4 +- .../customer/feedback/FeedbackList.vue | 10 +- .../customer/feedback/customer-manage.vue | 14 +- .../modules/customer/init/RegisterList.vue | 4 +- .../modules/customer/manage/CustomerInfo.vue | 2 +- .../modules/customer/manage/CustomerList.vue | 2 +- .../customer/manage/customer-manage.vue | 14 +- .../customer/miniProAgent/BasicInfo.vue | 12 +- .../customer/miniProAgent/Category.vue | 12 +- .../customer/miniProAgent/LowVersion.vue | 4 +- .../customer/miniProAgent/MiniProList.vue | 4 +- .../miniProAgent/version/OperHistory.vue | 2 +- .../miniProAgent/version/SubmitForm.vue | 16 +- .../miniProAgent/version/SubmitFormReject.vue | 2 +- .../miniProAgent/version/SubmitItem.vue | 8 +- .../miniProAgent/version/VersionItem.vue | 2 +- src/views/modules/customer/role.vue | 4 +- src/views/modules/dataExport/operStatic.vue | 12 +- src/views/modules/demo/demo-add-or-update.vue | 6 +- src/views/modules/demo/demo.vue | 6 +- .../modules/goverhotline/followDetail.vue | 16 +- src/views/modules/goverhotline/index.vue | 4 +- src/views/modules/home/index.vue | 2 +- .../modules/job/schedule-add-or-update.vue | 8 +- src/views/modules/job/schedule-log.vue | 2 +- src/views/modules/job/schedule.vue | 2 +- src/views/modules/message/mail-log.vue | 6 +- .../message/mail-template-add-or-update.vue | 4 +- .../modules/message/mail-template-config.vue | 8 +- .../modules/message/mail-template-send.vue | 6 +- src/views/modules/message/mail-template.vue | 2 +- src/views/modules/message/sms-config.vue | 18 +- src/views/modules/message/sms-send.vue | 4 +- src/views/modules/message/sms.vue | 4 +- .../strangeraccessrecord-add-or-update.vue | 28 +- .../operationReport/strangeraccessrecord.vue | 2 +- src/views/modules/oss/oss-config.vue | 46 +- src/views/modules/partner/app/edit.vue | 6 +- src/views/modules/partner/app/index.vue | 4 +- src/views/modules/partner/edit.vue | 2 +- .../icpartymemberpayrecord-add-or-update.vue | 24 +- .../partymember/icpartymemberpayrecord.vue | 2 +- ...rtymemberpayrecorddetail-add-or-update.vue | 24 +- .../icpartymemberpayrecorddetail.vue | 14 +- .../partymember/icpartymemberpoint.vue | 10 +- .../partymember/icpartyorg-add-or-update.vue | 18 +- src/views/modules/partymember/icpartyorg.vue | 2 +- .../modules/partymember/icpartyorgtree.vue | 2 +- src/views/modules/partymember/lookMember.vue | 28 +- .../change/changedeath-add-or-update.vue | 34 +- .../modules/plugins/change/changedeath.vue | 10 +- .../change/changerelocation-add-or-update.vue | 56 +- .../plugins/change/changerelocation.vue | 10 +- .../change/changewelfare-add-or-update.vue | 36 +- .../modules/plugins/change/changewelfare.vue | 10 +- .../modules/plugins/change/resichange.vue | 8 +- .../modules/plugins/change/resideath.vue | 12 +- .../modules/plugins/change/resideathAdd.vue | 6 +- .../modules/plugins/change/resiwelfare.vue | 8 +- src/views/modules/plugins/change/verify.vue | 8 +- .../plugins/change/verifyForm copy.vue | 16 +- .../modules/plugins/change/verifyForm.vue | 12 +- .../modules/plugins/point/icpointNoice.vue | 6 +- ...icpointnucleicmonitoring-add-or-update.vue | 12 +- .../point/icpointnucleicmonitoring.vue | 6 +- ...pointvaccinesinoculation-add-or-update.vue | 18 +- .../point/icpointvaccinesinoculation.vue | 4 +- .../modules/plugins/power/kernelhousehold.vue | 4 +- .../plugins/power/kernelhouseholdForm.vue | 2 +- .../plugins/power/kernelhouseholdTable.vue | 2 +- .../plugins/power/poweraxis-add-or-update.vue | 16 +- src/views/modules/plugins/power/poweraxis.vue | 4 +- .../modules/plugins/power/poweraxisForm.vue | 16 +- .../plugins/power/poweraxis_add_leader.vue | 14 +- .../power/poweraxistag-add-or-update.vue | 10 +- .../modules/plugins/power/servicestation.vue | 4 +- .../plugins/power/servicestationForm.vue | 12 +- .../plugins/power/servicestationTable.vue | 2 +- .../rent/hikerrorinfo-add-or-update.vue | 20 +- .../modules/plugins/rent/hikerrorinfo.vue | 2 +- .../rent/rentblacklist-add-or-update.vue | 32 +- .../modules/plugins/rent/rentblacklist.vue | 10 +- .../rent/rentcontractfile-add-or-update.vue | 18 +- .../modules/plugins/rent/rentcontractfile.vue | 2 +- .../rent/rentcontractinfo-add-or-update.vue | 56 +- .../rent/rentcontractinfo-look-or-check.vue | 40 +- .../modules/plugins/rent/rentcontractinfo.vue | 18 +- .../plugins/rent/rentcontractreview.vue | 12 +- .../plugins/rent/renthouse-add-or-update.vue | 24 +- src/views/modules/plugins/rent/renthouse.vue | 10 +- .../modules/plugins/rent/renthouseForm.vue | 12 +- .../rent/renttenantinfo-add-or-update.vue | 10 +- .../modules/plugins/rent/renttenantinfo.vue | 8 +- src/views/modules/plugins/rent/resi.vue | 8 +- ...factagencyuserhousedaily-add-or-update.vue | 46 +- .../stats/factagencyuserhousedaily.vue | 2 +- .../union/customerrelation-add-or-update.vue | 6 +- .../plugins/union/customerrelation.vue | 2 +- .../plugins/visit/visitor-add-or-update.vue | 20 +- .../visit/visitvisitor-add-or-update.vue | 20 +- .../modules/plugins/visit/visitvisitor.vue | 12 +- .../portrayal/house/cpts/businessRecord.vue | 2 +- src/views/modules/portrayal/house/index.vue | 2 +- .../portrayal/jumin/cpts/businessRecord.vue | 2 +- .../modules/portrayal/jumin/cpts/staffTag.vue | 4 +- src/views/modules/portrayal/jumin/index.vue | 2 +- src/views/modules/productConfig/MiniDraft.vue | 2 +- .../autoTest/autoTestList copy.vue | 56 +- .../customizeFunction/CustomFun.vue | 4 +- .../productConfig/customizeFunction/Edit.vue | 14 +- .../customizeFunction/EditDomainNameList.vue | 14 +- .../CustomizedFunction copy.vue | 4 +- .../function-add-or-update.vue | 8 +- .../defaultFunction/function.vue | 6 +- .../productConfig/footbar/FootbarEdit.vue | 8 +- .../productConfig/footbar/FootbarList.vue | 2 +- .../productConfig/footbar/FootbarMode.vue | 4 +- .../homeComponent/functionconfiguration.vue | 2 +- .../homecomponent-add-or-update.vue | 18 +- .../homeComponent/homecomponent.vue | 10 +- .../productConfig/homeCustom/homepage.vue | 4 +- .../productConfig/mostedit/MostList.vue | 24 +- .../productConfig/subscribe/MyTemp.vue | 2 +- .../productConfig/subscribe/TempEdit.vue | 8 +- .../productConfig/subscribe/TempList.vue | 6 +- .../topicConfig/TopicConfig copy.vue | 24 +- .../productConfig/topicConfig/TopicConfig.vue | 48 +- .../modules/productConfig/workRoleAuth.vue | 8 +- .../communitySelfInsp/communityDialog.vue | 4 +- .../communitySelfInsp/followList.vue | 8 +- .../communitySelfInsp/followUpDetail.vue | 16 +- .../communitySelfInsp/formList.vue | 4 +- .../satisfaction/communitySelfInsp/index.vue | 2 +- .../modules/satisfaction/detail/eventInfo.vue | 2 +- .../modules/satisfaction/detail/index.vue | 8 +- .../satisfactionProvince/followDetail.vue | 16 +- .../satisfactionProvince/formList.vue | 4 +- .../satisfactionProvince/index.vue | 4 +- .../difficulty/difficultyForm.vue | 10 +- .../difficulty/difficultyList.vue | 6 +- .../secretaryLog/humanisticCare/careForm.vue | 16 +- .../secretaryLog/humanisticCare/careList.vue | 12 +- .../modules/secretaryLog/workLog/form.vue | 6 +- .../modules/secretaryLog/workLog/index.vue | 6 +- src/views/modules/shequ/chaxun.vue | 2 +- src/views/modules/shequ/cpts/people-more.vue | 2 +- src/views/modules/shequ/cpts/smatr-rules.vue | 20 +- src/views/modules/shequ/index.vue | 4 +- src/views/modules/shequzhili/csgltc/csgl.vue | 4 +- .../modules/shequzhili/csgltc/csglForm.vue | 18 +- .../modules/shequzhili/event/cpts/add.vue | 22 +- .../shequzhili/event/cpts/event-detail.vue | 2 +- .../shequzhili/event/cpts/myCascader.vue | 2 +- .../event/cpts/process-form-demand.vue | 26 +- .../event/cpts/process-form-designate.vue | 8 +- .../event/cpts/process-form-issue.vue | 8 +- .../event/cpts/process-form-project.vue | 16 +- .../event/cpts/process-form-replay-end.vue | 4 +- .../event/cpts/process-form-replay.vue | 6 +- .../shequzhili/event/cpts/process-form.vue | 2 +- .../modules/shequzhili/event/eventList.vue | 26 +- .../modules/shequzhili/eventOld/cpts/add.vue | 20 +- .../shequzhili/eventOld/cpts/myCascader.vue | 2 +- .../eventOld/cpts/process-form-demand.vue | 26 +- .../eventOld/cpts/process-form-designate.vue | 8 +- .../eventOld/cpts/process-form-issue.vue | 8 +- .../eventOld/cpts/process-form-project.vue | 14 +- .../eventOld/cpts/process-form-replay-end.vue | 4 +- .../eventOld/cpts/process-form-replay.vue | 6 +- .../eventOld/cpts/process-form-urban.vue | 2 +- .../shequzhili/eventOld/cpts/process-form.vue | 2 +- .../modules/shequzhili/eventOld/eventList.vue | 20 +- src/views/modules/shequzhili/ggfwtc/ggfw.vue | 4 +- .../modules/shequzhili/ggfwtc/ggfwForm.vue | 16 +- .../modules/shequzhili/issue/cpts/add.vue | 22 +- .../shequzhili/issue/cpts/issue-detail.vue | 8 +- .../shequzhili/issue/cpts/process-form.vue | 12 +- .../issue/cptsAudit/process-form.vue | 4 +- .../shequzhili/issue/issueAuditList.vue | 10 +- .../modules/shequzhili/issue/issueList.vue | 10 +- .../modules/shequzhili/statics/cEvent.vue | 4 +- .../modules/shequzhili/statics/gridEvent.vue | 4 +- .../modules/shequzhili/statics/index.vue | 10 +- .../tuceng/anquan/anquanxuncha/addForm.vue | 18 +- .../tuceng/anquan/anquanxuncha/index.vue | 16 +- .../tuceng/anquan/anquanxuncha/record.vue | 854 ++++++++-------- .../tuceng/anquan/shebei/addForm.vue | 10 +- .../shequzhili/tuceng/anquan/shebei/index.vue | 8 +- .../tuceng/anquan/shebei/record.vue | 12 +- .../tuceng/anquan/xuncha/cpts/record.vue | 12 +- .../tuceng/anquan/yinhuan/addForm.vue | 16 +- .../tuceng/anquan/yinhuan/index.vue | 14 +- .../tuceng/anquan/yinhuan/record.vue | 6 +- .../tuceng/chengshiguanli/addForm.vue | 8 +- .../tuceng/chengshiguanli/index.vue | 8 +- .../tuceng/gonggongfuwu/addForm.vue | 14 +- .../shequzhili/tuceng/gonggongfuwu/index.vue | 6 +- .../tuceng/yingji/changsuo/addForm.vue | 10 +- .../tuceng/yingji/changsuo/index.vue | 6 +- .../shequzhili/tuceng/yingji/wuzi/addForm.vue | 12 +- .../shequzhili/tuceng/yingji/wuzi/index.vue | 10 +- .../shequzhili/tuceng/yingji/wuzi/record.vue | 908 +++++++++--------- .../tuceng/yingji/zizuzhi/addForm.vue | 24 +- .../tuceng/yingji/zizuzhi/index.vue | 6 +- .../tuceng/yingji/zizuzhi/scoreRecord.vue | 4 +- .../shequzhili/tuceng/zhonghe/base.vue | 8 +- .../shequzhili/tuceng/zhonghe/baseTotal.vue | 10 +- .../tuceng/zhonghe/shebei/addForm.vue | 10 +- .../tuceng/zhonghe/shebei/index.vue | 12 +- .../tuceng/zhonghe/shebei/record.vue | 901 ++++++++--------- .../modules/shequzhili/welfare/addForm.vue | 30 +- .../modules/shequzhili/welfare/editForm.vue | 32 +- .../modules/shequzhili/welfare/welfare.vue | 16 +- .../shequzhili/xiangmu/cpts/demand-info.vue | 4 +- .../modules/shequzhili/xiangmu/cpts/edit.vue | 26 +- .../shequzhili/xiangmu/cpts/project-info.vue | 20 +- .../modules/shequzhili/xiangmu/index.vue | 6 +- .../shequzhili/xiangmu/xiangmu-ling.vue | 22 +- .../modules/sys/calender-add-or-update.vue | 20 +- src/views/modules/sys/calender.vue | 2 +- src/views/modules/sys/dept-add-or-update.vue | 8 +- .../modules/sys/dict-data-add-or-update.vue | 8 +- src/views/modules/sys/dict-data.vue | 4 +- .../modules/sys/dict-type-add-or-update.vue | 8 +- src/views/modules/sys/dict-type.vue | 4 +- .../sys/icvaccineprarmeter-add-or-update.vue | 22 +- .../modules/sys/icvaccineprarmeter-check.vue | 32 +- src/views/modules/sys/icvaccineprarmeter.vue | 8 +- src/views/modules/sys/log-error.vue | 2 +- src/views/modules/sys/log-login.vue | 4 +- src/views/modules/sys/log-operation.vue | 4 +- src/views/modules/sys/menu-add-or-update.vue | 24 +- src/views/modules/sys/news-add-or-update.vue | 4 +- src/views/modules/sys/news.vue | 4 +- .../modules/sys/params-add-or-update.vue | 6 +- src/views/modules/sys/params.vue | 2 +- .../modules/sys/region-add-or-update.vue | 8 +- src/views/modules/sys/role-add-or-update.vue | 4 +- src/views/modules/sys/role.vue | 2 +- src/views/modules/sys/roomForm.vue | 24 +- src/views/modules/sys/user-add-or-update.vue | 20 +- src/views/modules/sys/user.vue | 2 +- .../serviceMatter/serviceForm.vue | 4 +- .../visual/basicinfo/basicInfoCommunity.vue | 4 +- .../modules/visual/basicinfo/peopleSearch.vue | 2 +- .../visual/basicinfo/personCategory/index.vue | 4 +- src/views/modules/visual/command/index.vue | 2 +- src/views/modules/visual/command/indexOld.vue | 2 +- .../communityGovern/distributionAnalyze.vue | 4 +- .../fivelayers/mapIndex copy 2.vue | 2 +- .../fivelayers/mapIndex copy.vue | 2 +- .../fivelayers/mapIndex-baidu.vue | 2 +- .../communityGovern/fivelayers/mapIndex.vue | 2 +- .../visual/communityGovern/processAnalyze.vue | 4 +- .../visual/communityGovern/resibuzz.vue | 4 +- .../shijianchuli/shijianchulifenxi copy.vue | 6 +- .../shijianchuli/shijianchulifenxi.vue | 6 +- .../shijianfenlei/shijianfenleifenxi.vue | 6 +- .../visual/communityGovern/typeAnalyze.vue | 4 +- .../zhongdianxingcheng/zhongdianxingcheng.vue | 4 +- .../visual/communityParty/community.vue | 10 +- .../modules/visual/communityParty/elegant.vue | 6 +- .../visual/communityParty/gridParty.vue | 2 +- .../modules/visual/communityParty/party.vue | 4 +- .../visual/communityParty/partyOld.vue | 2 +- .../visual/components/screen-map/index.vue | 4 +- src/views/modules/visual/cpts/tb copy 3.vue | 2 +- src/views/modules/visual/heart/index.vue | 2 +- .../modules/visual/measure/dialogInfo.vue | 4 +- src/views/modules/visual/measure/service.vue | 6 +- .../modules/visual/measure/volunteer.vue | 2 +- .../visual/plugin/power/organization.vue | 4 +- .../modules/visual/shundeju/controlCount.vue | 6 +- .../modules/workPc/customer-add-or-update.vue | 4 +- .../modules/workPc/guidance/DetailForm.vue | 4 +- src/views/modules/workPc/guidance/addForm.vue | 14 +- .../modules/workPc/guidance/categoryList.vue | 4 +- .../modules/workPc/guidance/guidanceList.vue | 6 +- .../modules/workPc/menu-add-or-update.vue | 24 +- src/views/modules/workSys/dataOpenConfig.vue | 4 +- src/views/modules/workSys/demandCate.vue | 8 +- src/views/modules/workSys/elegantEdit.vue | 4 +- .../workSys/hobbyItemsComponents/addForm.vue | 8 +- src/views/modules/workSys/mapConfig.vue | 16 +- src/views/modules/workSys/operAuth.vue | 6 +- .../modules/workSys/pointAditive/rule.vue | 12 +- src/views/modules/workSys/resiCate.vue | 18 +- .../modules/workSys/residentCategory.vue | 4 +- .../residentCategoryComponents/addForm.vue | 18 +- src/views/modules/workSys/role/role.vue | 4 +- src/views/modules/workSys/role/roleForm.vue | 4 +- .../serviceMattersComponents/addForm.vue | 10 +- .../modules/workSys/setResiUpdate/index.vue | 4 +- src/views/modules/workSys/workLog/edit.vue | 4 +- .../worklog/icworklog-add-or-update.vue | 10 +- src/views/modules/worklog/icworklog.vue | 12 +- src/views/pages/login.vue | 6 +- 546 files changed, 4742 insertions(+), 4735 deletions(-) diff --git a/src/components/ren-dept-tree/src/ren-dept-tree.vue b/src/components/ren-dept-tree/src/ren-dept-tree.vue index 461aed181..39db795f5 100644 --- a/src/components/ren-dept-tree/src/ren-dept-tree.vue +++ b/src/components/ren-dept-tree/src/ren-dept-tree.vue @@ -1,13 +1,13 @@