浏览代码

产权交易

rongxin_prod
庞东旭 1年前
父节点
当前提交
3b85c2d90a
共有 1 个文件被更改,包括 8 次插入4 次删除
  1. +8
    -4
      src/views/project/projectDetail.vue

+ 8
- 4
src/views/project/projectDetail.vue 查看文件

@@ -44,8 +44,8 @@
<van-row >
<van-col span="2"><van-image src="../../static/images/icon/phone.png" style="vertical-align: text-top;" /></van-col>
<template v-if="biddinglistInformation!=undefined&&biddinglistInformation.length>0">
<van-col span="5">{{biddinglistInformation[0].memberId}}</van-col>
<van-col span="4">{{biddinglistInformation[0].money}}元</van-col>
<van-col span="3">{{biddinglistInformation[0].memberId}}</van-col>
<van-col span="6">{{biddinglistInformation[0].money}}元</van-col>
<van-col span="4">领先</van-col>
<van-col span="9">{{biddinglistInformation[0].createTime}}</van-col>
</template>
@@ -687,11 +687,15 @@ export default {
message: '出价成功',
duration:"1000",
onClose:function(){
clearInterval(this.timer);
_this.reload()
_this.price = _this.price-_this.detail.ladderPrice;
if (_this.detail.biddingType=='自由竞价'||_this.detail.biddingType=='公开竞价'){
_this.price = null;
}else{
_this.price = _this.price-_this.detail.ladderPrice;
}
}
})

}
})
});


正在加载...
取消
保存