修复下单页面的价格计算问题
This commit is contained in:
parent
7ce8182b3d
commit
bc84e327c4
|
@ -114,7 +114,7 @@ export default {
|
||||||
content: response.goods.post_content,
|
content: response.goods.post_content,
|
||||||
price: response.goods.money,
|
price: response.goods.money,
|
||||||
});
|
});
|
||||||
this.total += parseFloat(response.goods.money);
|
this.total += parseFloat(response.goods.money * item.count);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue