diff --git a/src/views/biddingHall/index.vue b/src/views/biddingHall/index.vue index d2a31d3b..624916b9 100644 --- a/src/views/biddingHall/index.vue +++ b/src/views/biddingHall/index.vue @@ -112,28 +112,33 @@

{{item.timeType}}

- 当前价 + 当前价 * @@ -141,7 +146,7 @@ {{item.money}} @@ -149,13 +154,13 @@ {{item.priceUnit}} 暂无出价

@@ -372,7 +377,7 @@ export default { width: 94%; background: #ffffff; border-radius: 8PX; - margin: 15PX auto 0; + margin: 10PX auto 0; padding: 3vw 5%; .list_li_tt{ display: flex; @@ -381,7 +386,7 @@ export default { border-bottom: 1PX solid rgb(239,239,239); align-items: center; p{ - line-height: 1; + line-height: 22PX; &:nth-child(1){ color: #333333; font-weight: bold; @@ -394,6 +399,7 @@ export default { } &:nth-child(2){ flex-shrink: 0; + margin-left: 15PX; } } } @@ -420,13 +426,13 @@ export default { justify-content: right; div{ width: calc(50% - 4PX); - border-top: 1PX solid rgb(196,196,196); + border-top: 1PX solid #c4c4c4; } i{ width: 8PX; height: 8PX; display: block; - background: rgb(196,196,196); + background: #c4c4c4; border-radius: 50%; } } @@ -452,7 +458,7 @@ export default { .biddingProcess_text{ /*font-size: 1vh;*/ margin-top: 10PX; - color: rgb(196,196,196); + color: #848484; } .biddingProcessContent{ padding:0.4rem 0; diff --git a/src/views/project/projectDetail.vue b/src/views/project/projectDetail.vue index efe012dc..16349251 100644 --- a/src/views/project/projectDetail.vue +++ b/src/views/project/projectDetail.vue @@ -520,6 +520,9 @@ export default { setInterval(function () { getBiddingList(that.id).then(response =>{ that.biddinglistInformation = response.rows + if(response.rows.length != that.biddinglistInformationLength){ + that.price = parseInt(response.rows[0].money) - parseInt(that.detail.ladderPrice) + } that.biddinglistInformationLength = response.total }); },1000)