fix: 🐛 后端修改es商品返回数据字段,前端同步

This commit is contained in:
Yer
2023-04-28 10:21:36 +08:00
parent c04ae5eb39
commit 89f4e051ca
3 changed files with 4 additions and 4 deletions

View File

@@ -434,7 +434,7 @@ export default {
async getGoodsData() {
let res = await getGoodsList(this.goodsParams);
if (res.data.success) {
this.goodsList.push(...res.data.result.content);
this.goodsList.push(...res.data.result.records);
}
},