Commit cad2c193 authored by Damon's avatar Damon

perf: 不通过项为空处理

parent 6c21ff81
...@@ -649,8 +649,14 @@ export default { ...@@ -649,8 +649,14 @@ export default {
// this.showTab = this.list.length > 1 // this.showTab = this.list.length > 1
// 异常单处理 // 异常单处理
if (this.orderStatus === '88' || this.orderStatus === '86') if (this.orderStatus === '88' || this.orderStatus === '86'){
{ if (this.auditResults.length === 0) {
this.$refs.uToast.show({
title: '未找到不通过项',
type: 'error',
back: true
})
}
this.checkCompleteError(list) this.checkCompleteError(list)
} else { } else {
this.list = list this.list = list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment