diff --git a/src/pages/order/components/scanPay/index.tsx b/src/pages/order/components/scanPay/index.tsx index 91aa2a1..a932ef5 100644 --- a/src/pages/order/components/scanPay/index.tsx +++ b/src/pages/order/components/scanPay/index.tsx @@ -86,6 +86,7 @@ export default memo(({ show = true, onClose, company, orderInfo }: Param) => { wait_pay_amount: formatPriceDiv(orderInfo.wait_pay_amount).toString(), show_wait_pay_amount: orderInfo.wait_pay_amount > 0, show_barcode: true, + order_total_weight_error: formatWeightDiv(orderInfo.total_weight_error).toString(), //总空差重量 })) } }, [orderInfo]) diff --git a/src/pages/order/components/scanPayCheck/index.tsx b/src/pages/order/components/scanPayCheck/index.tsx index c457532..d49f55c 100644 --- a/src/pages/order/components/scanPayCheck/index.tsx +++ b/src/pages/order/components/scanPayCheck/index.tsx @@ -92,6 +92,7 @@ export default memo(({ show = true, onClose, company, orderInfo }: Param) => { wait_pay_amount: formatPriceDiv(orderInfo.wait_pay_amount).toString(), show_wait_pay_amount: orderInfo.wait_pay_amount > 0, show_barcode: true, + order_total_weight_error: formatWeightDiv(orderInfo.total_weight_error).toString(), //总空差重量 })) } }, [orderInfo])