From 864dcfe856500c3060c9c2321e9e80c74b61ec11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com> Date: Sun, 25 Jun 2023 15:37:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E6=9D=83=E4=BA=A4=E6=98=93=E5=87=BA?= =?UTF-8?q?=E4=BB=B7=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/biddingHall/index.vue | 36 +++++++++++++++++------------ src/views/project/projectDetail.vue | 3 +++ 2 files changed, 24 insertions(+), 15 deletions(-) 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)