From 2eb21bfe2f40630a46e675211f23b5f240e395a4 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期五, 12 九月 2025 15:01:42 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/user_action' into send_coupon --- api/store.js | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/api/store.js b/api/store.js index 61c57b8..6edae68 100644 --- a/api/store.js +++ b/api/store.js @@ -67,5 +67,37 @@ }); } +/** + * 鑾峰彇鐗╂祦妯℃澘 + * + */ + export function getFreightTemplate() { + return http.request({ + url: `/store/store/freightTemplate`, + method: Method.GET + }); +} +/** + * 鑾峰彇璁¢噺鍗曚綅 + * + */ + export function getGoodsUnit(param) { + return http.request({ + url: `/store/store/goods/unit`, + method: Method.GET, + param: param + }); +} +/** + * 鍙戝竷鍟嗗搧 + * + */ + export function createGoods(data) { + return http.request({ + url: `/store/store/goods/create`, + method: Method.POST, + data: data + }); +} -- Gitblit v1.8.0