From 1b2e980fb63f25b15ac9a8f1af148a04fc1589ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E9=A6=99=E7=90=AA?= <624506849@qq.com> Date: Tue, 23 Jun 2026 14:13:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20API=20=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E5=8F=82=E6=95=B0=E6=A0=BC=E5=BC=8F=E5=8F=8A=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F=20-=20=E5=B0=86?= =?UTF-8?q?=20addEvaluation=20API=20=E7=9A=84=E5=8F=82=E6=95=B0=E4=BB=8E?= =?UTF-8?q?=20params=20=E4=BF=AE=E6=94=B9=E4=B8=BA=20data=EF=BC=8C?= =?UTF-8?q?=E4=BB=A5=E7=AC=A6=E5=90=88=E6=A0=87=E5=87=86=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=20-=20=E5=9C=A8=E5=A4=9A=E4=B8=AA=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E4=B8=AD=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F=EF=BC=8C?= =?UTF-8?q?=E6=8F=90=E5=8D=87=E5=93=8D=E5=BA=94=E5=BC=8F=E5=B8=83=E5=B1=80?= =?UTF-8?q?=E5=92=8C=E7=94=A8=E6=88=B7=E4=BD=93=E9=AA=8C=20-=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E5=95=86=E5=93=81=E8=AF=A6=E6=83=85=E9=A1=B5=E7=9A=84?= =?UTF-8?q?=E5=80=92=E8=AE=A1=E6=97=B6=E6=98=BE=E7=A4=BA=EF=BC=8C=E5=A2=9E?= =?UTF-8?q?=E5=BC=BA=E8=A7=86=E8=A7=89=E6=95=88=E6=9E=9C=20-=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=B4=AD=E7=89=A9=E8=BD=A6=E6=93=8D=E4=BD=9C=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=A0=B7=E5=BC=8F=EF=BC=8C=E6=8F=90=E5=8D=87=E4=B8=80?= =?UTF-8?q?=E8=87=B4=E6=80=A7=E5=92=8C=E5=8F=AF=E7=94=A8=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer/src/api/member.js | 2 +- buyer/src/assets/styles/global-layout.scss | 3 + .../src/components/goodsDetail/Promotion.vue | 56 +++-- .../goodsDetail/ShowGoodsDetail.vue | 7 +- buyer/src/components/header/Header.vue | 60 +++-- .../components/indexDecorate/ModelForm.vue | 1 + .../indexDecorate/ModelFormItem.vue | 4 +- .../indexDecorate/modelList/Carousel.vue | 35 ++- buyer/src/components/nav/CateNav.vue | 8 +- buyer/src/pages/Cart.vue | 75 ++++-- .../home/memberCenter/evaluation/AddEval.vue | 23 +- .../pages/home/orderCenter/ApplyAfterSale.vue | 9 +- .../src/pages/home/orderCenter/MyAddress.vue | 8 +- buyer/src/pages/home/userCenter/MyTracks.vue | 24 +- buyer/src/pages/promotion/seckill.vue | 42 +++- .../components/lili-dialog/goods-dialog.vue | 134 +++++------ manager/src/components/map/multiple-map.vue | 2 +- manager/src/views/order/order/orderList.vue | 3 +- .../views/distribution/distributionGoods.vue | 224 +++++++++++------- .../goods/goods-seller/alertQuantity.vue | 4 +- seller/src/views/goods/goods-seller/goods.vue | 101 -------- seller/src/views/lili-dialog/goods-dialog.vue | 38 +-- .../views/my-components/map/multiple-map.vue | 2 +- .../order/after-order/returnGoodsOrder.vue | 6 +- .../order/after-order/returnMoneyOrder.vue | 8 +- seller/src/views/order/order/orderList.vue | 3 +- 26 files changed, 481 insertions(+), 401 deletions(-) diff --git a/buyer/src/api/member.js b/buyer/src/api/member.js index 7465e123..7cce873e 100644 --- a/buyer/src/api/member.js +++ b/buyer/src/api/member.js @@ -158,7 +158,7 @@ export function addEvaluation (params) { url: `/buyer/member/evaluation`, method: Method.POST, needToken: true, - params + data: params }); } diff --git a/buyer/src/assets/styles/global-layout.scss b/buyer/src/assets/styles/global-layout.scss index efd02a2c..08e02376 100644 --- a/buyer/src/assets/styles/global-layout.scss +++ b/buyer/src/assets/styles/global-layout.scss @@ -18,5 +18,8 @@ } // 与 CateNav 商品分类栏、Carousel 左占位一致的列宽 +$index-main-width: 1200px; $index-side-col-width: 263.2px; $index-col-gap: 10px; +// 1200 - 263.2*2 - 10*2 = 653.6px +$index-center-col-width: $index-main-width - ($index-side-col-width * 2) - ($index-col-gap * 2); diff --git a/buyer/src/components/goodsDetail/Promotion.vue b/buyer/src/components/goodsDetail/Promotion.vue index 9051263e..16dc2b4f 100644 --- a/buyer/src/components/goodsDetail/Promotion.vue +++ b/buyer/src/components/goodsDetail/Promotion.vue @@ -3,7 +3,12 @@
倒计时:
{{ hours }}{{ minutes }}{{ seconds }} + 倒计时: + {{ hours }} + : + {{ minutes }} + : + {{ seconds }}{{ item.reply }}