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