石广澎
2024-06-13 2a93afc95dda6afd1479af042e178b3e84a0c8c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import {
    config
} from '@/common/config.js';
const http = uni.$u.http;
const URL = config.baseURL;
 
/* 获取刷卡活动信息 */
export const activityInfo = (params, config = {}) => http.get(URL +
    '/payfour-merchant/v1/web/monthBrush/info', params, config)
/* 参与活动 */
export const signActivity = (params, config = {}) => http.get(URL +
    '/payfour-merchant/v1/web/monthBrush/sign', params, config)
/* 获取用户参与信息 */
export const myBrushDetail = (params, config = {}) => http.get(URL +
    '/payfour-merchant/v1/web/monthBrush/myBrushDetail', params, config)
/* 查询优惠券 */
export const orderRefBrushNode = (params, config = {}) => http.get(URL +
    '/payfour-merchant/v1/web/monthBrush/orderRefBrushNode', params, config)