From 70602bd0772c85343697a3a36f1e8cdccbdb49c9 Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Fri, 7 Mar 2025 15:00:15 +0800 Subject: [PATCH] =?UTF-8?q?refactor(app):=20=E4=BC=98=E5=8C=96=E8=89=BA?= =?UTF-8?q?=E6=9C=AF=E5=93=81=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2=E5=B9=B6?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 itemDetail 组件中的 console.log 语句 - 在 artDetail 页面中添加了 floating2 组件以改进浮动元素的实现 - 优化了 itemDetail 组件中价格规则图片的显示,添加了图片处理参数 - 移除了 collectCode/payment 组件中的冗余空行 --- app/components/itemDetail/index.vue | 4 +--- app/pages/artDetail/index.vue | 18 ++---------------- app/pages/collectCode/payment/index.vue | 2 -- 3 files changed, 3 insertions(+), 21 deletions(-) diff --git a/app/components/itemDetail/index.vue b/app/components/itemDetail/index.vue index 6ae6696..a7836ec 100644 --- a/app/components/itemDetail/index.vue +++ b/app/components/itemDetail/index.vue @@ -22,8 +22,6 @@ const filteredPriceRules = computed(() => { return props.detailInfo.priceRules.slice(0, emptyIndex) } }) -console.log('detailInfo',props.detailInfo); - diff --git a/app/pages/collectCode/payment/index.vue b/app/pages/collectCode/payment/index.vue index 7330b1a..4e5e180 100644 --- a/app/pages/collectCode/payment/index.vue +++ b/app/pages/collectCode/payment/index.vue @@ -51,8 +51,6 @@ const confirmPay = async () => { stripeKey:res.data.checkoutSessionUrl } }) - - } }