This commit is contained in:
shijingjing
2022-05-20 16:07:29 +08:00
parent 2539690fbb
commit d6550ddca6

View File

@@ -23,10 +23,10 @@
<div class="remark">
<div class="top">
<span style="margin-right: 8px;"></span><span>办理意见</span>
<span>*</span><span>办理意见</span>
</div>
<div class="bottom">
<u-input type="textarea" v-model="description" placeholder="请写下你的办理意见" maxlength="500" height="200"/>
<u-input type="textarea" v-model="description" placeholder="请写下你的办理意见" maxlength="100" height="200" />
</div>
</div>
@@ -86,7 +86,10 @@ export default {
if(!this.auditStatus) {
return this.$u.toast('请选择处理结果')
}
}
}
if (!this.description) {
return this.$u.toast('请输入办理意见')
}
let url = ''
let form = {}
@@ -122,7 +125,7 @@ export default {
}
},
onShow() {
document.title = this.checkType == 1? "处理意见":this.checkType == 2? "处理结果": ''
document.title = this.status == 1? "转交": "审核处理"
}
}
</script>