|
@ -2,10 +2,10 @@ |
|
|
<div class="project-handle"> |
|
|
<div class="project-handle"> |
|
|
<div style="width: 100%; height: 100%;"> |
|
|
<div style="width: 100%; height: 100%;"> |
|
|
<div class="project-detail"> |
|
|
<div class="project-detail"> |
|
|
<div class="project-detail-tip">议题详情</div> |
|
|
<div class="project-detail-tip">项目详情</div> |
|
|
<el-form label-position="right" |
|
|
<el-form label-position="right" |
|
|
label-width="120px"> |
|
|
label-width="120px"> |
|
|
<el-form-item label="议题内容:" |
|
|
<el-form-item label="项目内容:" |
|
|
prop="eventContent"> |
|
|
prop="eventContent"> |
|
|
<div>{{dataForm.itemContent}}</div> |
|
|
<div>{{dataForm.itemContent}}</div> |
|
|
<el-image v-for="url in dataForm.images" |
|
|
<el-image v-for="url in dataForm.images" |
|
@ -644,11 +644,12 @@ export default { |
|
|
...res.data |
|
|
...res.data |
|
|
} |
|
|
} |
|
|
this.dataForm.handleProgressResultDTOS.forEach((item, index, arr) => { |
|
|
this.dataForm.handleProgressResultDTOS.forEach((item, index, arr) => { |
|
|
if (index === arr.length - 1) { |
|
|
// if (index === arr.length - 1) { |
|
|
item.type = 'issue-project' |
|
|
// item.type = 'issue-project' |
|
|
} else { |
|
|
// } else { |
|
|
item.type = 'project' |
|
|
// item.type = 'project' |
|
|
} |
|
|
// } |
|
|
|
|
|
item.type = 'project' // 2022.9.4 需求变更 |
|
|
}) |
|
|
}) |
|
|
this.dataForm.issueProgressResultDTOS.forEach((item, index, arr) => { |
|
|
this.dataForm.issueProgressResultDTOS.forEach((item, index, arr) => { |
|
|
if (index === arr.length - 1) { |
|
|
if (index === arr.length - 1) { |
|
@ -744,10 +745,10 @@ export default { |
|
|
} else { |
|
|
} else { |
|
|
this.postDataForm.deptResultDTOS = [] |
|
|
this.postDataForm.deptResultDTOS = [] |
|
|
} |
|
|
} |
|
|
if (this.postDataForm.outHandleAdvice === '' && this.postDataForm.handleCategory !== '11') { |
|
|
if (this.postDataForm.outHandleAdvice === '' && this.postDataForm.handleCategory !== 11) { |
|
|
return this.$message.error('回复居民意见不能为空') |
|
|
return this.$message.error('回复居民意见不能为空') |
|
|
} |
|
|
} |
|
|
if (this.postDataForm.outHandleAdvice.length > 500 && this.postDataForm.handleCategory !== '11') { |
|
|
if (this.postDataForm.outHandleAdvice.length > 500 && this.postDataForm.handleCategory !== 11) { |
|
|
return this.$message.error('回复居民意见不能超过500字') |
|
|
return this.$message.error('回复居民意见不能超过500字') |
|
|
} |
|
|
} |
|
|
if (this.postDataForm.handleAdvice === '') { |
|
|
if (this.postDataForm.handleAdvice === '') { |
|
|