Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
zhutianqi
2021-12-14 17:07:34 +08:00
3 changed files with 7 additions and 2 deletions
@@ -565,6 +565,9 @@ export default {
}, },
//驳回事件 //驳回事件
beforeBack () { beforeBack () {
if(!this.commentText){
this.$message.warning('请填写审批意见')
}else{
this.listForm.applyUpdUserId = this.dataList[0].distributePersonId this.listForm.applyUpdUserId = this.dataList[0].distributePersonId
this.listForm.commentText = this.commentText; this.listForm.commentText = this.commentText;
this.listForm.dataList = this.dataList this.listForm.dataList = this.dataList
@@ -583,6 +586,7 @@ export default {
} }
}, e => { }, e => {
}); });
}
}, },
//提交事件 //提交事件
handleSubmit() { handleSubmit() {
@@ -561,7 +561,8 @@ export default {
}) })
}, },
//驳回事件 //驳回事件
beforeBack () { if(this.commentText === null || this.commentText === undefined || this.commentText === ''){ beforeBack () {
if(!this.commentText){
this.$message.warning('请填写审批意见') this.$message.warning('请填写审批意见')
} else { } else {
this.listForm.fenFlag = '2' this.listForm.fenFlag = '2'
@@ -560,7 +560,7 @@ export default {
//驳回事件 //驳回事件
beforeBack () { beforeBack () {
if(this.commentText === null || this.commentText === undefined || this.commentText === ''){ if(!this.commentText){
this.$message.warning('请填写审批意见') this.$message.warning('请填写审批意见')
} else { } else {
this.listForm.fenFlag = '2' this.listForm.fenFlag = '2'