From 134e9cbe6ef2b58f900e17957d59ec072af2075f Mon Sep 17 00:00:00 2001 From: sszdot Date: Thu, 12 Dec 2024 16:59:03 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E7=B1=BB=20=20=E5=9E=8B=E3=80=91?= =?UTF-8?q?=EF=BC=9Afactor=20=E3=80=90=E5=8E=9F=20=20=E5=9B=A0=E3=80=91?= =?UTF-8?q?=EF=BC=9A=20=E3=80=90=E8=BF=87=20=20=E7=A8=8B=E3=80=91=EF=BC=9A?= =?UTF-8?q?=E4=BB=8E=E5=95=86=E9=93=BA=E4=BF=A1=E6=81=AF=E9=87=8C=E9=9D=A2?= =?UTF-8?q?=20=E5=8F=96=E9=BB=98=E8=AE=A4=E8=BF=90=E8=B4=B9=20=E6=89=93?= =?UTF-8?q?=E5=8C=85=E8=B4=B9=E5=AD=97=E6=AE=B5=20=20=E4=BD=9C=E4=B8=BA?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=9A=84=E8=BF=90=E8=B4=B9=20=E5=92=8C=20?= =?UTF-8?q?=E6=89=93=E5=8C=85=E8=B4=B9=20=E3=80=90=E5=BD=B1=20=20=E5=93=8D?= =?UTF-8?q?=E3=80=91=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # 类型 包含: # feat:新功能(feature) # fix:修补bug # docs:文档(documentation) # style: 格式(不影响代码运行的变动) # refactor:重构(即不是新增功能,也不是修改bug的代码变动) # test:增加测试 # chore:构建过程或辅助工具的变动 --- pages/shop/order.vue | 30 ++++++++++++++++++++++++------ pages/shop/pay.vue | 5 +++++ 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/pages/shop/order.vue b/pages/shop/order.vue index 7f61f4f..7ee1ece 100644 --- a/pages/shop/order.vue +++ b/pages/shop/order.vue @@ -25,7 +25,7 @@ 送达时间 - 预估30分钟之后送达 + 预估{{estimated}}分钟之后送达 @@ -56,15 +56,15 @@ 外送费 - ¥5.00 + ¥{{transportPrice | formatPrice}} 打包服务费 - ¥2.00 + ¥{{packPrice | formatPrice}} 合计 - ¥{{total | formatPrice}} + ¥{{fullPrice | formatPrice}} @@ -81,7 +81,7 @@ 合计 - ¥{{total | formatPrice}} + ¥{{fullPrice | formatPrice}} 共{{totalCount}}件 + + @@ -19,6 +21,9 @@ }, onLoad(options) { this.order_sn = options.order_sn; // 从提交订单页面传递过来的订单号 + }, + computed(){ + }, methods: { // 支付方法