|
|
@@ -613,6 +613,7 @@ export default { |
|
|
|
duration:"1000", |
|
|
|
onClose:function(){ |
|
|
|
_this.reload() |
|
|
|
_this.price = 0; |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
@@ -634,7 +635,7 @@ export default { |
|
|
|
} |
|
|
|
}else{ |
|
|
|
|
|
|
|
if(this.biddinglistInformation[0].money <= this.price){ |
|
|
|
if(this.biddinglistInformation[0].money <= (parseInt(this.price)+parseInt(this.detail.ladderPrice))){ |
|
|
|
this.$toast({ |
|
|
|
icon: 'fail', // 找到自己需要的图标 |
|
|
|
message: '出价不能高于当前出价最低价格', |
|
|
@@ -712,7 +713,7 @@ export default { |
|
|
|
return; |
|
|
|
} |
|
|
|
}else{ |
|
|
|
if(this.biddinglistInformation[0].money>=this.price){ |
|
|
|
if(this.biddinglistInformation[0].money>=(parseInt(this.price)-parseInt(this.detail.ladderPrice))){ |
|
|
|
this.$toast({ |
|
|
|
icon: 'fail', // 找到自己需要的图标 |
|
|
|
message: '出价不能低于当前出价最高价格', |
|
|
|