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: { // 支付方法