From 32063da2781cd49a7e731269286b276b2f459838 Mon Sep 17 00:00:00 2001 From: wanggongfeng <1305282856@qq.com> Date: Thu, 24 Sep 2020 19:30:20 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90grid=E4=BF=AE=E6=94=B9=E3=80=91-?= =?UTF-8?q?=E7=8E=8B=E5=85=AC=E5=B3=B0-2020-09-24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis/issue/hottest-issue-list.vue | 10 +++---- .../issue-classified-statistic-second.vue | 12 ++++---- .../issue/issue-classified-statistic.vue | 18 ++++++------ .../analysis/issue/latest-issue-list.vue | 10 +++---- .../analysis/item/difficult-Item-list.vue | 10 +++---- .../analysis/item/hottest-item-list.vue | 10 +++---- .../analysis/item/report-solved-item-list.vue | 10 +++---- .../item/report-unsolved-item-list.vue | 10 +++---- .../analysis/item/unsolved-item-list.vue | 10 +++---- .../analysis/topic/hottest-topic-list.vue | 10 +++---- .../analysis/topic/latest-topic-list.vue | 10 +++---- .../modules/analysis/user/gridopening.vue | 16 +++++------ .../metausergridopining-add-or-update.vue | 8 +++--- .../analysis/user/metausergridopining.vue | 6 ++-- src/views/modules/analysis/user/party.vue | 16 +++++------ src/views/modules/analysis/user/register.vue | 22 +++++++-------- .../honest/newshonest-add-or-update.vue | 6 ++-- .../modules/honest/newshonest-publish.vue | 12 ++++---- src/views/modules/news/allnews.vue | 18 ++++++------ .../modules/news/allnotice-add-or-update.vue | 22 +++++++-------- src/views/modules/news/allnotice.vue | 8 +++--- .../modules/news/banner-add-or-update.vue | 24 ++++++++-------- src/views/modules/news/news-add-or-update.vue | 22 +++++++-------- src/views/modules/news/news-publish.vue | 28 +++++++++---------- src/views/modules/news/news.vue | 20 ++++++------- src/views/modules/news/newsdraft.vue | 18 ++++++------ src/views/modules/news/notice.vue | 4 +-- .../modules/property/gridpartymembergroup.vue | 12 ++++---- src/views/modules/property/group.vue | 6 ++-- src/views/modules/property/leaderboard.vue | 10 +++---- .../propertyproject-add-or-update.vue | 8 +++--- .../modules/property/propertyproject.vue | 4 +-- src/views/modules/property/topic-list.vue | 10 +++---- .../modules/workRecord/monthrecordinfo.vue | 8 +++--- .../workRecord/monthrecordinfoDetail.vue | 6 ++-- 35 files changed, 217 insertions(+), 217 deletions(-) diff --git a/src/views/modules/analysis/issue/hottest-issue-list.vue b/src/views/modules/analysis/issue/hottest-issue-list.vue index 2fa8616..9250f98 100644 --- a/src/views/modules/analysis/issue/hottest-issue-list.vue +++ b/src/views/modules/analysis/issue/hottest-issue-list.vue @@ -86,7 +86,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', topicContent: '' @@ -121,22 +121,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/issue/issue-classified-statistic-second.vue b/src/views/modules/analysis/issue/issue-classified-statistic-second.vue index 433d9ce..3d5575f 100644 --- a/src/views/modules/analysis/issue/issue-classified-statistic-second.vue +++ b/src/views/modules/analysis/issue/issue-classified-statistic-second.vue @@ -95,7 +95,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', sort: 'desc', @@ -141,22 +141,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, @@ -182,7 +182,7 @@ export default { // this.$refs.issueClassifiedStatisticThird.dataForm.categoryName = categoryName // this.$refs.issueClassifiedStatisticThird.dataForm.streetId = this.dataForm.streetId // this.$refs.issueClassifiedStatisticThird.dataForm.communityId = this.dataForm.communityId - // this.$refs.issueClassifiedStatisticThird.dataForm.gridId = this.dataForm.gridId + // this.$refs.issueClassifiedStatisticThird.dataForm.deptId = this.dataForm.deptId // this.$refs.issueClassifiedStatisticThird.dataForm.startTime = this.dataForm.startTime // this.$refs.issueClassifiedStatisticThird.dataForm.endTime = this.dataForm.endTime // this.$refs.issueClassifiedStatisticThird.dataForm.sort = this.dataForm.sort diff --git a/src/views/modules/analysis/issue/issue-classified-statistic.vue b/src/views/modules/analysis/issue/issue-classified-statistic.vue index 1447964..6ea9d8d 100644 --- a/src/views/modules/analysis/issue/issue-classified-statistic.vue +++ b/src/views/modules/analysis/issue/issue-classified-statistic.vue @@ -100,11 +100,11 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', sort: 'desc', categoryLevel: '1', - startTime:'', - endTime:'' + startTime: '', + endTime: '' }, pickerBeginDateBefore: { disabledDate: (time) => { @@ -154,22 +154,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, @@ -190,7 +190,7 @@ export default { this.$refs.issueClassifiedStatisticSecond.dataForm.categoryName = categoryName this.$refs.issueClassifiedStatisticSecond.dataForm.streetId = this.dataForm.streetId this.$refs.issueClassifiedStatisticSecond.dataForm.communityId = this.dataForm.communityId - this.$refs.issueClassifiedStatisticSecond.dataForm.gridId = this.dataForm.gridId + this.$refs.issueClassifiedStatisticSecond.dataForm.deptId = this.dataForm.deptId this.$refs.issueClassifiedStatisticSecond.dataForm.startTime = this.dataForm.startTime this.$refs.issueClassifiedStatisticSecond.dataForm.endTime = this.dataForm.endTime this.$refs.issueClassifiedStatisticSecond.dataForm.sort = this.dataForm.sort @@ -208,7 +208,7 @@ export default { this.$refs.issueClassifiedStatisticSecond.dataForm.categoryName = categoryName this.$refs.issueClassifiedStatisticSecond.dataForm.streetId = this.dataForm.streetId this.$refs.issueClassifiedStatisticSecond.dataForm.communityId = this.dataForm.communityId - this.$refs.issueClassifiedStatisticSecond.dataForm.gridId = this.dataForm.gridId + this.$refs.issueClassifiedStatisticSecond.dataForm.deptId = this.dataForm.deptId this.$refs.issueClassifiedStatisticSecond.dataForm.startTime = this.dataForm.startTime this.$refs.issueClassifiedStatisticSecond.dataForm.endTime = this.dataForm.endTime this.$refs.issueClassifiedStatisticSecond.dataForm.sort = this.dataForm.sort diff --git a/src/views/modules/analysis/issue/latest-issue-list.vue b/src/views/modules/analysis/issue/latest-issue-list.vue index df6135e..65f2c2d 100644 --- a/src/views/modules/analysis/issue/latest-issue-list.vue +++ b/src/views/modules/analysis/issue/latest-issue-list.vue @@ -82,7 +82,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', topicContent: '' @@ -117,22 +117,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/item/difficult-Item-list.vue b/src/views/modules/analysis/item/difficult-Item-list.vue index fb4951d..f3dd60f 100644 --- a/src/views/modules/analysis/item/difficult-Item-list.vue +++ b/src/views/modules/analysis/item/difficult-Item-list.vue @@ -178,7 +178,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', orderType: '', changeItemStartTime: '', changeItemEndTime: '', @@ -234,22 +234,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/item/hottest-item-list.vue b/src/views/modules/analysis/item/hottest-item-list.vue index 2ac28da..3a9540a 100644 --- a/src/views/modules/analysis/item/hottest-item-list.vue +++ b/src/views/modules/analysis/item/hottest-item-list.vue @@ -82,7 +82,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', searchContent: '' @@ -117,22 +117,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/item/report-solved-item-list.vue b/src/views/modules/analysis/item/report-solved-item-list.vue index 7c5307c..fde94c8 100644 --- a/src/views/modules/analysis/item/report-solved-item-list.vue +++ b/src/views/modules/analysis/item/report-solved-item-list.vue @@ -106,7 +106,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', reportDept: '', reportStartTime: '', reportEndTime: '', @@ -145,22 +145,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } }, 'streetIds': function (val) { diff --git a/src/views/modules/analysis/item/report-unsolved-item-list.vue b/src/views/modules/analysis/item/report-unsolved-item-list.vue index 13376c9..5d522bd 100644 --- a/src/views/modules/analysis/item/report-unsolved-item-list.vue +++ b/src/views/modules/analysis/item/report-unsolved-item-list.vue @@ -81,7 +81,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', reportDept: '', reportStartTime: '', reportEndTime: '', @@ -120,22 +120,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } }, 'streetIds': function (val) { diff --git a/src/views/modules/analysis/item/unsolved-item-list.vue b/src/views/modules/analysis/item/unsolved-item-list.vue index 1324794..07f50a4 100644 --- a/src/views/modules/analysis/item/unsolved-item-list.vue +++ b/src/views/modules/analysis/item/unsolved-item-list.vue @@ -81,7 +81,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', searchContent: '' @@ -132,22 +132,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/topic/hottest-topic-list.vue b/src/views/modules/analysis/topic/hottest-topic-list.vue index d026b2f..9dae724 100644 --- a/src/views/modules/analysis/topic/hottest-topic-list.vue +++ b/src/views/modules/analysis/topic/hottest-topic-list.vue @@ -85,7 +85,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', topicContent: '' @@ -121,22 +121,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/topic/latest-topic-list.vue b/src/views/modules/analysis/topic/latest-topic-list.vue index 5ca35fa..c4e0b6d 100644 --- a/src/views/modules/analysis/topic/latest-topic-list.vue +++ b/src/views/modules/analysis/topic/latest-topic-list.vue @@ -82,7 +82,7 @@ export default { id: '', streetId: '', communityId: '', - gridId: '', + deptId: '', startTime: '', endTime: '', topicContent: '' @@ -117,22 +117,22 @@ export default { if (val.length === 0) { this.dataForm.streetId = '' this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.ids[0] this.dataForm.communityId = this.ids[1] - this.dataForm.gridId = this.ids[2] + this.dataForm.deptId = this.ids[2] } } }, diff --git a/src/views/modules/analysis/user/gridopening.vue b/src/views/modules/analysis/user/gridopening.vue index 6126f4c..80c84ef 100644 --- a/src/views/modules/analysis/user/gridopening.vue +++ b/src/views/modules/analysis/user/gridopening.vue @@ -418,32 +418,32 @@ export default { this.communityList = [] this.gridList = [] this.dataForm.communityId = '' - this.dataForm.gridId = '' + this.dataForm.deptId = '' return } this.dataForm.streetId = event let choosenItem = this.streetList.filter(item => item.id === this.dataForm.streetId)[0] this.initDeptIdAndName(choosenItem) - this.dataForm.communityId = this.dataForm.gridId = null + this.dataForm.communityId = this.dataForm.deptId = null this.communityList = this.gridList = [] this.getDeptInfoList('community', event) }, changeCommunity (event) { if (this.dataForm.communityId === '') { this.gridList = [] - this.dataForm.gridId = '' + this.dataForm.deptId = '' return } this.communityId = event let choosenItem = this.communityList.filter(item => item.id === this.dataForm.communityId)[0] this.initDeptIdAndName(choosenItem) - this.dataForm.gridId = null + this.dataForm.deptId = null this.gridList = [] this.getDeptInfoList('grid', event) }, changeGrid (event) { - this.dataForm.gridId = event - let choosenItem = this.gridList.filter(item => item.id === this.gridId)[0] + this.dataForm.deptId = event + let choosenItem = this.gridList.filter(item => item.id === this.deptId)[0] this.initDeptIdAndName(choosenItem) }, initDeptIdAndName (choosenItem) { @@ -554,9 +554,9 @@ export default { watch: { 'deptIdList': function (val) { if (val.length !== 0) { - this.dataForm.gridId = val[val.length - 1] + this.dataForm.deptId = val[val.length - 1] } else { - this.dataForm.gridId = '' + this.dataForm.deptId = '' } } } diff --git a/src/views/modules/analysis/user/metausergridopining-add-or-update.vue b/src/views/modules/analysis/user/metausergridopining-add-or-update.vue index 1eb597f..74fd56b 100644 --- a/src/views/modules/analysis/user/metausergridopining-add-or-update.vue +++ b/src/views/modules/analysis/user/metausergridopining-add-or-update.vue @@ -1,8 +1,8 @@ @@ -167,9 +167,9 @@ export default { this.getOptions() }, methods: { - addHandle (id, disabled, caseId, gridId, personId, isHaveSort) { + addHandle (id, disabled, caseId, deptId, personId, isHaveSort) { this.$parent.selectComponent = 'MonthrecordinfoDetail' - this.$router.push({ path: '/workRecord-Monthrecordinforoute', query: { id: id, disabled: disabled, caseId: caseId, gridId: gridId, personId: personId, isHaveSort: isHaveSort } }) + this.$router.push({ path: '/workRecord-Monthrecordinforoute', query: { id: id, disabled: disabled, caseId: caseId, deptId: deptId, personId: personId, isHaveSort: isHaveSort } }) }, addCaseHandle (infoId, disabled) { this.$parent.selectComponent = 'MonthexcellentcaseDetail' diff --git a/src/views/modules/workRecord/monthrecordinfoDetail.vue b/src/views/modules/workRecord/monthrecordinfoDetail.vue index d78fb2a..f5a755d 100644 --- a/src/views/modules/workRecord/monthrecordinfoDetail.vue +++ b/src/views/modules/workRecord/monthrecordinfoDetail.vue @@ -112,7 +112,7 @@ export default { isShowPersonBtn: false, isShowSortBtn: false, caseId: '', - gridId: '', + deptId: '', personId: '', queryDisabled: '' } @@ -158,7 +158,7 @@ export default { if (this.$route.query.gridId !== '' && this.$route.query.gridId != null) { // 展示示范网格跳转按钮 this.isShowGridBtn = true - this.gridId = this.$route.query.gridId + this.deptId = this.$route.query.gridId } if (this.$route.query.personId !== '' && this.$route.query.personId != null) { // 展示身边榜样跳转按钮 @@ -177,7 +177,7 @@ export default { }, goToGridHandle () { this.$parent.selectComponent = 'MonthexcellentgridDetail' - this.$router.push({ path: '/workRecord-Monthrecordinforoute', query: { id: this.gridId, disabled: this.queryDisabled, infoId: this.dataForm.id } }) + this.$router.push({ path: '/workRecord-Monthrecordinforoute', query: { id: this.deptId, disabled: this.queryDisabled, infoId: this.dataForm.id } }) }, goToPersonHandle () { this.$parent.selectComponent = 'MonthexcellentpersonDetail'