From f28a4a64c825b02e32e79387e0a6763e934ce51d Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期一, 17 十一月 2025 16:01:09 +0800
Subject: [PATCH] feat(config): 更新生态圈API基础URL配置
---
common/api/shuaka.js | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/common/api/shuaka.js b/common/api/shuaka.js
new file mode 100644
index 0000000..426f956
--- /dev/null
+++ b/common/api/shuaka.js
@@ -0,0 +1,18 @@
+import {
+ config
+} from '@/common/config.js';
+const http = uni.$u.http;
+const URL = config.baseURL;
+
+/* 鑾峰彇鍒峰崱娲诲姩淇℃伅 */
+export const activityInfo = (params, config = {}) => http.get(URL +
+ '/service-merchant/v1/web/monthBrush/info', params, config)
+/* 鍙備笌娲诲姩 */
+export const signActivity = (params, config = {}) => http.get(URL +
+ '/service-merchant/v1/web/monthBrush/sign', params, config)
+/* 鑾峰彇鐢ㄦ埛鍙備笌淇℃伅 */
+export const myBrushDetail = (params, config = {}) => http.get(URL +
+ '/service-merchant/v1/web/monthBrush/myBrushDetail', params, config)
+/* 鏌ヨ浼樻儬鍒� */
+export const orderRefBrushNode = (params, config = {}) => http.get(URL +
+ '/service-merchant/v1/web/monthBrush/orderRefBrushNode', params, config)
\ No newline at end of file
--
Gitblit v1.9.1