From b60a3b22b6f891d162318b3c0fe43fbe63388bab Mon Sep 17 00:00:00 2001 From: Wayne Hsu Date: Sun, 2 Apr 2023 00:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B6=A0=E7=95=8C=E9=87=91=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/Order.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/Order.js b/src/store/Order.js index c62f1d6..eabcd1c 100644 --- a/src/store/Order.js +++ b/src/store/Order.js @@ -36,6 +36,7 @@ export const useOrderStore = defineStore('order', { async initShippingData(params) { this.shipping = { shipping_code: 'ecpay', + shipping_fee: 0, extra_data: { type: params.type, store_id: params.store_id, @@ -58,6 +59,7 @@ export const useOrderStore = defineStore('order', { store_address: params.store_address, store_tel: params.store_tel } + return true } },