🦀️ fix: 修复bug

This commit is contained in:
wangsongsole 2024-02-29 16:53:10 +08:00
parent b85dcfa184
commit 943a7ae352
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@
this.loading = false;
clearTimeout(clr);
}, 2000);
this.getProductDetail(true, res.message);
const text = res.code == 200 ? '' : res.message;
this.getProductDetail(true, text);
})
.catch((err) => { });
},