| 123456789101112131415161718192021 |
- const http = uni.$u.http
- // post请求,用户绑定门店
- export const userBindStore = (params, config = {}) => http.post('/member/wechat/bindStore', params, config)
- // get请求 获取门店列表
- // export const storeList = (params, config = {}) => http.get('/store/uniapp/store-list', params, config)
- // get请求 获取公告列表
- export const noticeList = (params, config = {}) => http.get('/system/openapi/notice/list', params, config)
- // get请求 获取公告详情
- export const getNoticeDetail = (params, config = {}) => http.get('/system/openapi/notice/'+params.data.noticeId, params, config)
- // get请求 获取banner图列表
- export const getSlideshowList = (params, config = {}) => http.get('/system/openapi/getSlideshowList', params, config)
|