fix(mine): 修复接口500导致奖衔字段undefined后页面后续交互被阻塞的问题

This commit is contained in:
woody 2025-05-10 20:53:50 +08:00
parent b5e1d3974c
commit 5bfb9f8f63
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ export default {
//
getUserAwardss() {
api.getUserAwards().then((res) => {
this.awards = res.data;
this.awards = res.data || {};
});
},
GetPercent(num, total) {