From 769254ae2cb1319969eb5c3902d06ccbdaa1e944 Mon Sep 17 00:00:00 2001
From: Haiyi <1021441632@qq.com>
Date: Tue, 21 Feb 2023 10:24:30 +0800
Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(ID1000895):=E7=A0=81=E5=8D=95?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=94=AE=E4=B8=AD=E5=94=AE=E5=90=8E=E8=AF=B4?=
=?UTF-8?q?=E6=98=8E?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/order/components/scanPay/index.tsx | 3 +++
src/pages/salesAfter/components/returnPayCheck/index.tsx | 5 ++++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/pages/order/components/scanPay/index.tsx b/src/pages/order/components/scanPay/index.tsx
index f309db6..e966958 100644
--- a/src/pages/order/components/scanPay/index.tsx
+++ b/src/pages/order/components/scanPay/index.tsx
@@ -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: `请核对本单后验收, 如发现质量问题,请于收到货之日起3天内与平台客服联系协商解决,逾期不作处理即表示购方默认对货物无异议;购方确认无任何问题方可裁剪/加工,一经裁剪,缩水等工艺,平台概不负责;
+ 看布购货,请先试缩水,并注意分缸裁布!如需撞色拼接,请先试色牢度。非质量问题,恕不退换,谢谢合作!`,
}))
}
}, [orderInfo, show])
diff --git a/src/pages/salesAfter/components/returnPayCheck/index.tsx b/src/pages/salesAfter/components/returnPayCheck/index.tsx
index 59c7e9d..ef8106b 100644
--- a/src/pages/salesAfter/components/returnPayCheck/index.tsx
+++ b/src/pages/salesAfter/components/returnPayCheck/index.tsx
@@ -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: `请核对本单后验收, 如发现质量问题,请于收到货之日起3天内与平台客服联系协商解决,逾期不作处理即表示购方默认对货物无异议;购方确认无任何问题方可裁剪/加工,一经裁剪,缩水等工艺,平台概不负责;
+ 看布购货,请先试缩水,并注意分缸裁布!如需撞色拼接,请先试色牢度。非质量问题,恕不退换,谢谢合作!`,
}))
}
}, [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
}