From c1626f0e66bb1301668698c71c490a0bdc1c6a0e Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期一, 25 八月 2025 18:48:31 +0800 Subject: [PATCH] 跳转 --- 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