|
|
@ -240,7 +240,7 @@ |
|
|
|
<span>您反映的诉求属于 “ {{postDataForm.handleAdvice}} ” 情形,不属于平台受理范围,感谢您对“北尚诉办”台的持! |
|
|
|
</span> |
|
|
|
</el-form-item> --> |
|
|
|
<el-form-item label="不予受理原因:" prop="handleAdviceRadios" v-if="isShowDeal"> |
|
|
|
<el-form-item label="不予受理原因:" prop="handleAdvice" v-if="isShowDeal"> |
|
|
|
<el-radio-group v-model="postDataForm.handleAdviceRadios" class="handleAdvice"> |
|
|
|
<el-radio label="历史遗留暂不具备解决条件的事项">1. 历史遗留暂不具备解决条件的事项</el-radio> |
|
|
|
<el-radio label="依法应当通过诉讼、仲裁、行政复议解决的事项">2. 依法应当通过诉讼、仲裁、行政复议解决的事项</el-radio> |
|
|
@ -265,13 +265,14 @@ |
|
|
|
<el-input v-model="postDataForm.handlePeopleMobile"></el-input> |
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
<el-form-item label="处置照片:" v-loading="loadingIn" prop="handleImagesPC"> |
|
|
|
<el-form-item label="处置照片:" v-loading="loadingIn" prop="handleImagesPC" > |
|
|
|
<el-upload |
|
|
|
:action="uploadUrl" |
|
|
|
:disabled="isAble" |
|
|
|
:class="{hide:hideUploadIn}" |
|
|
|
list-type="picture-card" |
|
|
|
:file-list="postDataForm.handleImagesPC" |
|
|
|
|
|
|
|
:limit=3 |
|
|
|
:on-preview="handlePictureCardPreviewIn" |
|
|
|
:on-remove="handleRemoveIn" |
|
|
@ -283,6 +284,8 @@ |
|
|
|
</el-upload> |
|
|
|
<div><font color="gray">1~3张图</font></div> |
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="满意度评价:" |
|
|
|
prop="evaluateDeptDTOS" |
|
|
|
v-if="evaluateDeptDTOSVisible"> |
|
|
@ -418,7 +421,7 @@ export default { |
|
|
|
handlerDeptIdRule: '', |
|
|
|
voice: '' |
|
|
|
}, |
|
|
|
isAble: false, |
|
|
|
isAble: true, |
|
|
|
previewImgList: [], |
|
|
|
deptResult: [], |
|
|
|
commentsDTOs: [], |
|
|
@ -622,11 +625,29 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
'typeKey':function(val){ |
|
|
|
this.isAble = true; |
|
|
|
if(val == 'grid_party'){ |
|
|
|
this.isAble = false; |
|
|
|
this.uploadUrl = `${ |
|
|
|
window.SITE_CONFIG['apiURL'] |
|
|
|
}/oss/file/upload/1?token=${Cookies.get('token')}`; |
|
|
|
|
|
|
|
}else if(val == 'community_party'){ |
|
|
|
this.isAble = false; |
|
|
|
this.uploadUrl = `${ |
|
|
|
window.SITE_CONFIG['apiURL'] |
|
|
|
}/oss/file/upload/2?token=${Cookies.get('token')}` |
|
|
|
} |
|
|
|
|
|
|
|
this.postDataForm.handleImagesPC = []; |
|
|
|
}, |
|
|
|
'postDataForm.handleAdvice': function (val) { |
|
|
|
this.dataForm.handleAdvice = val |
|
|
|
}, |
|
|
|
'postDataForm.handleAdviceRadios': function (val) { |
|
|
|
this.postDataForm.handleAdvice = val |
|
|
|
this.dataForm.handleAdviceRadios = val; |
|
|
|
}, |
|
|
|
|
|
|
|
'postDataForm.outHandleAdvice': function (val) { |
|
|
@ -641,7 +662,6 @@ export default { |
|
|
|
'postDataForm.handleCategoryShow': function (val) { |
|
|
|
if (this.typeKey == 'community_party') { |
|
|
|
if (val == 6) { |
|
|
|
|
|
|
|
this.isShowDeal = true |
|
|
|
this.showAdvice = false |
|
|
|
this.isWhistle = false |
|
|
@ -889,6 +909,7 @@ export default { |
|
|
|
) { |
|
|
|
return this.$message.error('请先选择操作人部门!') |
|
|
|
} |
|
|
|
console.log(this.dataForm) |
|
|
|
// 处理选择【结案申请】时,隐藏居民处理意见 |
|
|
|
// if (this.postDataForm.handleCategory === 11) { |
|
|
|
// this.hideResident = true; |
|
|
@ -958,7 +979,7 @@ export default { |
|
|
|
this.map.enableScrollWheelZoom(true) |
|
|
|
}, |
|
|
|
init () { |
|
|
|
this.isAble = false |
|
|
|
this.isAble = true; |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.dataForm.id) { |
|
|
|
this.postDataForm.handleAdvice = '' |
|
|
|