From 810fbf8955b99c7e6e4a8551f7e1ffa95515f549 Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期五, 12 九月 2025 19:16:37 +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