diff --git a/src/pages/orderDetails/index.tsx b/src/pages/orderDetails/index.tsx index 40b8ff1..e9dfa2e 100644 --- a/src/pages/orderDetails/index.tsx +++ b/src/pages/orderDetails/index.tsx @@ -539,10 +539,16 @@ export default () => { //申请退款 const handApplyMoney = () => { - - Taro.navigateTo({ - url: '/pages/applyMoney/index?orderId=' + infoObj.id - }) + //三种类型的 待收货,已收货后申请退货退款,需要选择质量/非质量问题 + if (infoObj?.status == 8 || infoObj?.status == 9) { + Taro.navigateTo({ + url: '/pages/applyGoods/index?orderId=' + infoObj.id + }) + } else { + Taro.navigateTo({ + url: '/pages/applyMoney/index?orderId=' + infoObj.id + }) + } setShowMore(false) }