This commit is contained in:
liuye
2024-06-28 10:26:00 +08:00
parent 1be5ca3cce
commit 423f584474

View File

@@ -149,6 +149,21 @@ export default {
this.negativeTypeList[index].status = val
},
add() {
var isStatus = true
this.positiveTypeList.map((item) => {
if(item.status == null) {
isStatus = false
}
})
this.negativeTypeList.map((item) => {
if(item.status == null) {
isStatus = false
}
})
if(!isStatus) {
return this.$u.toast('请填写评价清单中所有项内容')
}
if(!this.form.remark) {
return this.$u.toast('请填写评语')
}