fix: 适配新获取商品返回结果

master
misworga831 2023-04-04 15:14:41 +08:00
parent 3498de4529
commit 1abc7a5a52
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ export default {
.then((res) => {
this.loading = false;
if (res.success) {
this.goodsList = res.result;
this.goodsList = res.result.records;
this.total = res.result.total;
}
})