feat(ID1000895):码单新增售中售后说明

This commit is contained in:
Haiyi 2023-02-21 10:24:30 +08:00
parent da6506124b
commit 769254ae2c
2 changed files with 7 additions and 1 deletions

View File

@ -110,6 +110,9 @@ const ScanPay = ({ show = true, onClose, company, orderInfo }: Param) => {
order_total_weight_error: formatWeightDiv(orderInfo.total_weight_error).toString(), // 总空差重量
show_total_price: orderInfo.is_display_price,
show_sale_price: orderInfo.is_display_price,
show_tips: true,
tips: `请核对本单后验收, <b>如发现质量问题请于收到货之日起3天内与平台客服联系协商解决</b>逾期不作处理即表示购方默认对货物无异议;<b>购方确认无任何问题方可裁剪/加工,一经裁剪,缩水等工艺,平台概不负责;</b>
退`,
}))
}
}, [orderInfo, show])

View File

@ -87,6 +87,9 @@ export default memo(({ show = true, onClose, orderInfo }: Param) => {
show_total_price: orderInfo.is_display_price,
show_sale_price: orderInfo.is_display_price,
show_deduction_amount: orderInfo.is_display_price,
show_tips: true,
tips: `请核对本单后验收, <b>如发现质量问题请于收到货之日起3天内与平台客服联系协商解决</b>逾期不作处理即表示购方默认对货物无异议;<b>购方确认无任何问题方可裁剪/加工,一经裁剪,缩水等工艺,平台概不负责;</b>
退`,
}))
}
}, [orderInfo])
@ -95,7 +98,7 @@ export default memo(({ show = true, onClose, orderInfo }: Param) => {
const address = (addressInfo) => {
if (addressInfo?.shipment_mode == 2) {
return addressInfo?.province_name ? addressInfo.province_name + addressInfo.city_name + addressInfo.district_name + addressInfo.address_detail : ''
}
}
else {
return addressInfo?.take_goods_address
}