🐞 fix(ID1000752):剪版已收货后申请退货退款,需要选择质量/非质量问题

This commit is contained in:
Haiyi 2022-11-18 15:00:29 +08:00
parent 60a32468fa
commit 7b8f6466a6

View File

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