This commit is contained in:
shenyanpei
2021-12-05 15:52:59 +08:00
parent 5852af38ce
commit 30beabfbbb
@@ -102,7 +102,7 @@
</div> </div>
</div> </div>
<el-collapse accordion> <el-collapse accordion>
<el-collapse-item title="回执说明"> <el-collapse-item title="审批意见">
<div style="margin: 10px 0;"> <div style="margin: 10px 0;">
<el-input <el-input
type="textarea" type="textarea"
@@ -317,7 +317,7 @@ export default {
}, },
/** 议题列表查看按钮 */ /** 议题列表查看按钮 */
meetingFileBtn(val) { meetingFileBtn(val) {
this.themeFileList = val.material this.themeFileList = val.meetingFile
this.meetingFileDialog = true this.meetingFileDialog = true
}, },
handleClose() { handleClose() {
@@ -348,6 +348,9 @@ export default {
// 退回按钮 // 退回按钮
handleSubmitNo() { handleSubmitNo() {
if (this.commentText === '') {
this.$message.warning('请输入审批意见')
} else {
let json = { let json = {
passFlag: '0', passFlag: '0',
commentText: this.commentText, commentText: this.commentText,
@@ -369,6 +372,7 @@ export default {
}); });
} }
}) })
}
}, },
// 提交按钮 // 提交按钮
handleSubmit() { handleSubmit() {