|
|
@ -38,11 +38,11 @@ |
|
|
|
</el-date-picker> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="转办意见" prop="transferAdvice" label-width="150px" :class="{ 'form-item': source === 'visiual' }" |
|
|
|
<el-form-item label="转办意见" prop="content" label-width="150px" :class="{ 'form-item': source === 'visiual' }" |
|
|
|
style="display: block"> |
|
|
|
<div :class="{ 'visiual-form': source === 'visiual' }"> |
|
|
|
<el-input class="cell-width-area" type="textarea" maxlength="500" show-word-limit :rows="5" |
|
|
|
placeholder="请输入转办意见,不超过500字" v-model.trim="formData.transferAdvice" |
|
|
|
placeholder="请输入转办意见,不超过500字" v-model.trim="formData.content" |
|
|
|
@input="handelInputContent"></el-input> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
@ -75,7 +75,7 @@ export default { |
|
|
|
formData: { |
|
|
|
operationType: "5", //处理方式[0:已回复 5、指派 6、完成并回复] |
|
|
|
handlingReq:'',//办理要求 |
|
|
|
transferAdvice:'',//转办意见 |
|
|
|
content:'',//转办意见 |
|
|
|
createdTime: '', |
|
|
|
contactTime:'', |
|
|
|
timeLimit:'',//办结时限 |
|
|
@ -157,7 +157,7 @@ export default { |
|
|
|
if (this.eventId) { |
|
|
|
this.eventDetailCopy = JSON.parse(JSON.stringify(this.eventDetailData)); |
|
|
|
this.formData.handlingReq = this.eventDetailCopy.handlingReq; |
|
|
|
this.formData.transferAdvice = this.eventDetailCopy.transferAdvice; |
|
|
|
this.formData.content = this.eventDetailCopy.content; |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|