|
|
@@ -225,7 +225,13 @@ export default {
|
|
|
refundSendCost:this.orderInfo.refundSendCostAmount,
|
|
|
refundPackCost:this.orderInfo.refundPackCostAmount
|
|
|
};
|
|
|
- that.$util.confirmModal({content:'确认退款?'},() => {
|
|
|
+ let topTitle = '提示'
|
|
|
+ let title = '确认退款?'
|
|
|
+ if(this.orderInfo.onlinePay == 1 && Number(this.orderInfo.debtPrice)<=0){
|
|
|
+ title = '此单线下付款,还要线下转钱给客户,确认记得转?'
|
|
|
+ topTitle = '特别注意!!!'
|
|
|
+ }
|
|
|
+ that.$util.confirmModal({title:topTitle,content:title},() => {
|
|
|
uni.showLoading({title: "提交中",mask:true})
|
|
|
refund(refundParams).then(res => {
|
|
|
if(res.code == 1){
|