Commit 3bf0d4b1 authored by guang.wu's avatar guang.wu

fix: 处理强制转数字类型问题

parent 909cdb62
......@@ -221,7 +221,7 @@ const UpdateStatusModal = (props, ref) => {
skuInfoList: skuInfoList
.filter(skuInfo => skuInfo.skuNo?.length)
.map(skuInfo => ({
skuNo: Number(skuInfo.skuNo[0]),
skuNo: skuInfo.skuNo[0],
quantity: Number(skuInfo.quantity),
})),
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment