Browse Source

feat: 修复备件撤回bug

master
ljlong_2630 5 days ago
parent
commit
1eebdff49c
  1. 10
      src/pages/sparePartsApplication/index.vue

10
src/pages/sparePartsApplication/index.vue

@ -103,7 +103,15 @@
list.value = []
status.value = 'loadmore'
await getList()
proxy.$modal.showToast('撤回成功')
if(res.data){
proxy.$modal.showToast('撤回成功')
}else{
if (res.msg) {
proxy.$modal.showToast(res.msg)
} else {
proxy.$modal.showToast('撤回失败')
}
}
}).catch(()=>{})
})
}

Loading…
Cancel
Save