|
@ -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 |
|
@ -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,9 +1174,10 @@ 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: '确定', |
|
|