shish 1 год назад
Родитель
Сommit
c26af0a0f1
1 измененных файлов с 7 добавлено и 1 удалено
  1. 7 1
      ghsApp/src/pagesOrder/refund.vue

+ 7 - 1
ghsApp/src/pagesOrder/refund.vue

@@ -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){