diff --git a/src/views/project/projectDetail.vue b/src/views/project/projectDetail.vue
index 37293bbc..6e842934 100644
--- a/src/views/project/projectDetail.vue
+++ b/src/views/project/projectDetail.vue
@@ -33,6 +33,10 @@
挂牌价
{{detail.price}} {{detail.unit}}
+
+ 最高限价
+ {{ detail.priceMax }} 元
+
保证金
{{ detail.deposit }} 元
@@ -539,7 +543,11 @@ export default {
if(this.getSignupData=="1"){
this.isSignup=true
this.btnMsg="立即竞价"
- this.showBtn=true
+ if(this.detail.biddingType!='线下竞价'){
+ this.showBtn=true
+ }else{
+ this.btnMsg="立即竞价(暂不支持线上出价)"
+ }
// this.price=this.detail.ladderPrice?this.biddinglistInformation[0].money+this.detail.ladderPrice:this.biddinglistInformation[0].money+1
}else{
this.btnMsg="未报名"
@@ -637,7 +645,11 @@ export default {
if(this.getSignupData=="1"){
this.isSignup=true
this.btnMsg="立即竞价"
- this.showBtn=true
+ if(this.detail.biddingType!='线下竞价'){
+ this.showBtn=true
+ }else{
+ this.btnMsg="立即竞价(暂不支持线上出价)"
+ }
// this.price=this.detail.ladderPrice?this.biddinglistInformation[0].money+this.detail.ladderPrice:this.biddinglistInformation[0].money+1
}else{
this.btnMsg="未报名"