From 9635c9c3a6869b3605374ac322e1eb548c2bf52e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BE=81?= Date: Tue, 17 May 2022 15:47:55 +0800 Subject: [PATCH 1/3] =?UTF-8?q?feat:=E5=AE=8C=E6=88=90=E5=94=AE=E5=90=8E?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../account/index/order/saleAfter/detail.vue | 25 ++++++++ pages/account/index/order/saleAfter/list.vue | 58 +++++++++++++++++++ 2 files changed, 83 insertions(+) diff --git a/pages/account/index/order/saleAfter/detail.vue b/pages/account/index/order/saleAfter/detail.vue index e69de29..4549e35 100644 --- a/pages/account/index/order/saleAfter/detail.vue +++ b/pages/account/index/order/saleAfter/detail.vue @@ -0,0 +1,25 @@ + + + + + diff --git a/pages/account/index/order/saleAfter/list.vue b/pages/account/index/order/saleAfter/list.vue index e69de29..a69994a 100644 --- a/pages/account/index/order/saleAfter/list.vue +++ b/pages/account/index/order/saleAfter/list.vue @@ -0,0 +1,58 @@ + + + + + From f0c23a102f268ab8880f39ad247f8c379d921dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BE=81?= Date: Tue, 17 May 2022 15:49:21 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E5=95=86=E5=93=81=E8=AF=A6=E6=83=85=E4=B8=BA=E6=96=B0=E5=BC=80?= =?UTF-8?q?=E7=AA=97=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/UiGoodsItem.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/UiGoodsItem.vue b/components/UiGoodsItem.vue index 4b716c8..240f517 100644 --- a/components/UiGoodsItem.vue +++ b/components/UiGoodsItem.vue @@ -41,9 +41,10 @@ export default { return str; }, onItem() { - this.$router.push({ - path: "/goods/detail/" + this.item.id, - }); + // this.$router.push({ + // path: "/goods/detail/" + this.item.id, + // }); + window.open("/goods/detail/" + this.item.id) }, }, }; From 0c81f5afd5ec5153ae6aba86f19f2fa4c0b25b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BE=81?= Date: Tue, 17 May 2022 16:10:23 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/UiGoodsItem.vue | 15 ++++++++++++--- pages/goods/detail/_id.vue | 27 ++++++++++++++++++--------- 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/components/UiGoodsItem.vue b/components/UiGoodsItem.vue index 240f517..074d468 100644 --- a/components/UiGoodsItem.vue +++ b/components/UiGoodsItem.vue @@ -8,7 +8,7 @@ {{ item.name }}
- + {{ item.startingPrice }}
@@ -44,7 +44,7 @@ export default { // this.$router.push({ // path: "/goods/detail/" + this.item.id, // }); - window.open("/goods/detail/" + this.item.id) + window.open("/goods/detail/" + this.item.id); }, }, }; @@ -56,7 +56,7 @@ export default { cursor: pointer; background: #ffffff; - &:hover{ + &:hover { box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.10000000149011612); } @@ -93,6 +93,15 @@ export default { &__price { width: 200px; margin: 0 auto; + + &--txt { + font-size: 14px; + color: #ff512b; + &::before { + content: "¥"; + font-size: 14px; + } + } } } diff --git a/pages/goods/detail/_id.vue b/pages/goods/detail/_id.vue index af7ba91..48f70ea 100644 --- a/pages/goods/detail/_id.vue +++ b/pages/goods/detail/_id.vue @@ -104,13 +104,11 @@
售价 - + {{ + detailData.productActivityVO.isStartActivity + ? detailData.productActivityVO.activityPrice + : detailData.startingPrice + }}