🐞 fix(修复提交购物车偶尔出现的参数错误问题):

This commit is contained in:
czm 2023-02-13 11:02:03 +08:00
parent 059cdf8c40
commit 4f02cec568

View File

@ -165,7 +165,7 @@ const SubmitOrder = () => {
const list: any[] = []
arr?.forEach((item) => {
list.push({
shopping_cart_product_color_id: item,
shopping_cart_product_color_id: parseInt(item),
sale_price: 0,
})
})