fix(custom): 修复商家积分体现显示0的问题

This commit is contained in:
2023-12-03 21:06:23 +08:00
parent 36cae90d74
commit b4dc5de795

View File

@@ -107,7 +107,7 @@ const getData = async () => {
});
data.value = res.data.data || [];
pagination.value.totalItems = res.data.total;
row.value = res.data.integral || 0;
row.value = res.data.data.integral || 0;
console.log(res);
} catch (e) {
throw e;