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 fde94c8..6708bfb 100644 --- a/src/views/modules/analysis/item/report-solved-item-list.vue +++ b/src/views/modules/analysis/item/report-solved-item-list.vue @@ -41,7 +41,7 @@ - + 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 5d522bd..261c96a 100644 --- a/src/views/modules/analysis/item/report-unsolved-item-list.vue +++ b/src/views/modules/analysis/item/report-unsolved-item-list.vue @@ -41,7 +41,7 @@ - + diff --git a/src/views/modules/events/faild-events-add-or-update.vue b/src/views/modules/events/faild-events-add-or-update.vue index 113a733..f1ca929 100644 --- a/src/views/modules/events/faild-events-add-or-update.vue +++ b/src/views/modules/events/faild-events-add-or-update.vue @@ -37,11 +37,11 @@ - - + + - - + + @@ -125,8 +125,8 @@ export default { streetId: '', community: '', communityId: '', - grid: '', - gridId: '', + dept: '', + deptId: '', issueAddress: '', issueCategoryId: '', issueLatitude: '', @@ -187,10 +187,10 @@ export default { communityId: [ { required: true, message: this.$t('validate.required'), trigger: 'blur' } ], - grid: [ + dept: [ { required: true, message: this.$t('validate.required'), trigger: 'blur' } ], - gridId: [ + deptId: [ { required: true, message: this.$t('validate.required'), trigger: 'blur' } ], issueAddress: [ diff --git a/src/views/modules/events/faild-events.vue b/src/views/modules/events/faild-events.vue index 43c37b5..1d70952 100644 --- a/src/views/modules/events/faild-events.vue +++ b/src/views/modules/events/faild-events.vue @@ -30,7 +30,7 @@ - { if (res.code !== 0) { return this.$message.error(res.msg) @@ -201,10 +201,10 @@ export default { getGridList () { if (this.dataForm.communityId === '') { this.gridOptions = [] - this.dataForm.gridId = '' + this.dataForm.deptId = '' return } - this.dataForm.gridId = '' + this.dataForm.deptId = '' this.$http.get(`/sys/dept/sublist/` + this.dataForm.communityId).then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg) diff --git a/src/views/modules/events/issue-change-list.vue b/src/views/modules/events/issue-change-list.vue index 6c497cb..32989fb 100644 --- a/src/views/modules/events/issue-change-list.vue +++ b/src/views/modules/events/issue-change-list.vue @@ -226,7 +226,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', state: '4', issueCode: '', source: '', @@ -271,22 +271,22 @@ 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/events/issue-close-list.vue b/src/views/modules/events/issue-close-list.vue index 1ddbb33..f6a47ae 100644 --- a/src/views/modules/events/issue-close-list.vue +++ b/src/views/modules/events/issue-close-list.vue @@ -228,7 +228,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', state: '2', issueCode: '', source: '', @@ -273,22 +273,22 @@ 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/events/issue-process-list.vue b/src/views/modules/events/issue-process-list.vue index f612732..e5c0b81 100644 --- a/src/views/modules/events/issue-process-list.vue +++ b/src/views/modules/events/issue-process-list.vue @@ -241,7 +241,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', state: '0', issueCode: '', source: '', @@ -287,22 +287,22 @@ 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/events/issue-reject-list.vue b/src/views/modules/events/issue-reject-list.vue index 925faec..1af937e 100644 --- a/src/views/modules/events/issue-reject-list.vue +++ b/src/views/modules/events/issue-reject-list.vue @@ -146,7 +146,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', source: '', eventContent: '', nickName: '' @@ -190,22 +190,22 @@ 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/events/issue-review-list.vue b/src/views/modules/events/issue-review-list.vue index 49d0aa8..f21d1f3 100644 --- a/src/views/modules/events/issue-review-list.vue +++ b/src/views/modules/events/issue-review-list.vue @@ -134,9 +134,9 @@ export default { endTime: '', streetId: '', communityId: '', - gridId: '', - eventContent:'', - nickName:'' + deptId: '', + eventContent: '', + nickName: '' }, ids: [], options: [], @@ -169,22 +169,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/events/item-close-list.vue b/src/views/modules/events/item-close-list.vue index 2cb945e..a8dbfbf 100644 --- a/src/views/modules/events/item-close-list.vue +++ b/src/views/modules/events/item-close-list.vue @@ -230,7 +230,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', itemCode: '', itemContent: '', nickName: '', @@ -268,22 +268,22 @@ 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/events/item-deal-list.vue b/src/views/modules/events/item-deal-list.vue index 78d98c7..1ea9fac 100644 --- a/src/views/modules/events/item-deal-list.vue +++ b/src/views/modules/events/item-deal-list.vue @@ -230,7 +230,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', itemCode: '', itemContent: '', nickName: '', @@ -268,22 +268,22 @@ 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/events/item-end-list.vue b/src/views/modules/events/item-end-list.vue index 404d83a..1601ff1 100644 --- a/src/views/modules/events/item-end-list.vue +++ b/src/views/modules/events/item-end-list.vue @@ -235,7 +235,7 @@ endTime: '', streetId: '', communityId: '', - gridId: '', + deptId: '', itemCode: '', itemContent: '', nickName: '', @@ -273,22 +273,22 @@ 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] } } },