修复下单页面的价格计算问题

This commit is contained in:
TOP糯米 2023-03-09 21:16:08 +08:00
parent 7ce8182b3d
commit bc84e327c4
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ export default {
content: response.goods.post_content,
price: response.goods.money,
});
this.total += parseFloat(response.goods.money);
this.total += parseFloat(response.goods.money * item.count);
});
});
},