|
|
@ -1007,11 +1007,17 @@ |
|
|
|
|
|
|
|
|
if (this.isPaotui && this.selected === 'buzhiding' && !isJoiningFaceToFace) { |
|
|
if (this.isPaotui && this.selected === 'buzhiding' && !isJoiningFaceToFace) { |
|
|
let comm = parseFloat(this.customCommission); |
|
|
let comm = parseFloat(this.customCommission); |
|
|
if (isNaN(comm) || comm < 0.1) { |
|
|
//没有输入佣金,直接弹出输入框 |
|
|
|
|
|
if(isNaN(comm)){ |
|
|
|
|
|
this.$refs.commissionPopup.open() |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
|
|
|
if (comm < 0.1) { |
|
|
this.warnPopup = 'psyj'; |
|
|
this.warnPopup = 'psyj'; |
|
|
this.$refs.warnPopup.open(); |
|
|
this.$refs.warnPopup.open(); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (comm > 200) { |
|
|
if (comm > 200) { |
|
|
this.tui.toast('配送佣金不得超过200元'); |
|
|
this.tui.toast('配送佣金不得超过200元'); |
|
|
return; |
|
|
return; |
|
|
|