Browse Source

待处理详情结案申请不拼接办理人信息

release/epdc
wanggongfeng 3 years ago
parent
commit
ecb03a2b8e
  1. 45
      src/views/modules/events/item-deal-detail-view.vue

45
src/views/modules/events/item-deal-detail-view.vue

@ -266,7 +266,7 @@
<el-radio label="涉及党组织、党员、监察对象的检举、控告和申诉,建议您到市北区纪委监委信访室(延吉路80号)反映问题,举报电话:12388">8. 涉及党组织党员监察对象的检举控告和申诉建议您到市北区纪委监委信访室延吉路80号反映问题举报电话12388</el-radio> <el-radio label="涉及党组织、党员、监察对象的检举、控告和申诉,建议您到市北区纪委监委信访室(延吉路80号)反映问题,举报电话:12388">8. 涉及党组织党员监察对象的检举控告和申诉建议您到市北区纪委监委信访室延吉路80号反映问题举报电话12388</el-radio>
<el-radio label="不在市北区管辖范围的事项">9. 不在市北区管辖范围的事项</el-radio> <el-radio label="不在市北区管辖范围的事项">9. 不在市北区管辖范围的事项</el-radio>
<el-radio label="其他不予受理的事项">10. 其他不予受理的事项</el-radio> <el-radio label="其他不予受理的事项">10. 其他不予受理的事项</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<el-form-item label="不予受理详细说明:" prop="handleAdviceRemark" v-if="isShowDeal" > <el-form-item label="不予受理详细说明:" prop="handleAdviceRemark" v-if="isShowDeal" >
@ -437,7 +437,7 @@ export default {
issueLatitude: '', issueLatitude: '',
issueLongitude: '', issueLongitude: '',
handlerDeptIdRule: '', handlerDeptIdRule: '',
handleAdviceRemark:"", handleAdviceRemark: '',
voice: '' voice: ''
}, },
isAble: true, isAble: true,
@ -449,7 +449,7 @@ export default {
total: null, total: null,
postDataForm: { postDataForm: {
id: '', id: '',
handleAdviceRemark:"", handleAdviceRemark: '',
handlePeopleName: '', handlePeopleName: '',
handlePeopleMobile: '', handlePeopleMobile: '',
handleAdvice: '', handleAdvice: '',
@ -706,8 +706,8 @@ export default {
}/oss/file/uploadImg?token=${Cookies.get('token')}` }/oss/file/uploadImg?token=${Cookies.get('token')}`
}, },
methods: { methods: {
changeAdvices(d){ changeAdvices (d) {
console.log(d) console.log(d)
}, },
refreshProgress () { refreshProgress () {
this.timeloading = true this.timeloading = true
@ -1089,7 +1089,7 @@ export default {
if (this.postDataForm.handleAdviceRemark === '' && this.postDataForm.handleCategoryShow == '6') { if (this.postDataForm.handleAdviceRemark === '' && this.postDataForm.handleCategoryShow == '6') {
return this.$message.error('请填写不予受理详细说明') return this.$message.error('请填写不予受理详细说明')
} }
// if (type == 11) { // if (type == 11) {
if (this.postDataForm.handlePeopleName === '') { if (this.postDataForm.handlePeopleName === '') {
return this.$message.error('请输入办理人姓名!') return this.$message.error('请输入办理人姓名!')
@ -1147,31 +1147,19 @@ export default {
} }
this.isAble = true this.isAble = true
// //
for ( for (let oimg = 0; oimg < this.postDataForm.outHandleImagesPC.length; oimg++) {
let oimg = 0; this.postDataForm.outHandleImages[ oimg ] = this.postDataForm.outHandleImagesPC[oimg].url
oimg < this.postDataForm.outHandleImagesPC.length;
oimg++
) {
this.postDataForm.outHandleImages[
oimg
] = this.postDataForm.outHandleImagesPC[oimg].url
} }
for ( for (let himg = 0; himg < this.postDataForm.handleImagesPC.length; himg++) {
let himg = 0; this.postDataForm.handleImages[ himg ] = this.postDataForm.handleImagesPC[himg].url
himg < this.postDataForm.handleImagesPC.length;
himg++
) {
this.postDataForm.handleImages[
himg
] = this.postDataForm.handleImagesPC[himg].url
} }
let messageTitle = '' let messageTitle = ''
if (type == 1) { if (type === 1) {
// //
if (this.typeKey == 'community_party') { if (this.typeKey === 'community_party') {
messageTitle = '此案件尚未办结,确定吹哨给街道办理' messageTitle = '此案件尚未办结,确定吹哨给街道办理'
this.postDataForm.handleCategory = 15 this.postDataForm.handleCategory = 15
} else if (this.typeKey == 'grid_party') { } else if (this.typeKey === 'grid_party') {
messageTitle = '此案件尚未办结,确定吹哨给社区办理' messageTitle = '此案件尚未办结,确定吹哨给社区办理'
this.postDataForm.handleCategory = 1 this.postDataForm.handleCategory = 1
} }
@ -1186,10 +1174,11 @@ export default {
this.postDataForm.outHandleImagesPC = imagesAttr this.postDataForm.outHandleImagesPC = imagesAttr
this.postDataForm.outHandleImages = this.postDataForm.handleImages this.postDataForm.outHandleImages = this.postDataForm.handleImages
// if(!this.isShowDeal){ if (type !== 11) {
//
this.postDataForm.handleAdvice += ` 办理人:${this.postDataForm.handlePeopleName} 办理电话: ${this.postDataForm.handlePeopleMobile}` this.postDataForm.handleAdvice += ` 办理人:${this.postDataForm.handlePeopleName} 办理电话: ${this.postDataForm.handlePeopleMobile}`
// } }
this.$confirm(messageTitle, '提示', { this.$confirm(messageTitle, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',

Loading…
Cancel
Save