|
|
@@ -260,7 +260,6 @@ export default {
|
|
|
confirmRefund(){
|
|
|
let hasError = false
|
|
|
let selectProduct = []
|
|
|
- let that = this
|
|
|
if(!this.$util.isEmpty(this.goodsInfoList)){
|
|
|
this.goodsInfoList.forEach(ele=>{
|
|
|
let currentRefundCont = ele.refundCount ? Number(ele.refundCount) :0
|
|
|
@@ -314,6 +313,12 @@ export default {
|
|
|
uni.showToast({title:'请选择商品',icon:'none'})
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
+ if(Number(this.refundMoney)<=0){
|
|
|
+ this.$msg('请填写退款金额')
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
// 显示确认退款弹框
|
|
|
this.showRefundModal = true
|
|
|
},
|