From 8771da2ccf6f7c3fd2a8c89a1a0e230c6386db7f Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期一, 17 十一月 2025 15:40:48 +0800
Subject: [PATCH] feat(api): 新增多个API接口并优化配置

---
 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