体检app bug修复

This commit is contained in:
binbin_pan 2024-09-19 13:22:19 +08:00
parent cc913afb9a
commit c35c333525
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ export default {
success: res => {
res = res.data
console.log('🚀 ~ 列表 ~ res:', res)
if (res.res == 1) {
if (res.res == 1 && res.obj != 'isnull') {
this.makeList = this.allList = res.obj
this.canceledList = res.obj.filter(item => item.ifCancel == 1)
this.readyList = res.obj.filter(item => item.ifCancel == 2)