| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import {http} from './service.js'
- //文件上传
- const uploadFile =(p)=> http.upload('blade-resource/oss/endpoint/put-file', {name:'file',filePath:p})
- //手机验证码
- const sms={
- send:p => http.post('huawei/sms/sendSms'+p),
- validCode:(p)=> http.post('huawei/sms/validCode'+p)
- }
- const mall={
- //获取商场列表
- list:p => http.get('cyzh-ldt/mall/list',{params:p}),
- //获取商场区域
- getMallAreaByMallId:p => http.get('cyzh-ldt/app/mall/getMallAreaByMallId?mallId='+p),
- //获取标签
- getShopLabelByMallId:p => http.get("cyzh-ldt/app/mall/getShopLabelByMallId?mallId="+p),
- }
- //商户管理
- const shop={
- //获取商户列表
- list:p => http.get('cyzh-ldt/shop/list',{params:p}),
- detail:p => http.get('cyzh-ldt/shop/detail',{params:p}),
- submit:(p)=> http.post('cyzh-ldt/shop/submit',p),
- statistic:p => http.get('cyzh-ldt/app/shop/statistic?shopId='+p),
- }
- const memberCenter={
- list:p => http.get('cyzh-ldt/app/shop/getMembersByShopId',{params:p}),
- create:(p)=> http.post('cyzh-ldt/app/shop/createMemberCenter',p),
- }
- const activity={
- publish:(p)=> http.post('/cyzh-ldt/activity/submit',p),
- list:p => http.get("cyzh-ldt/app/shop/getActivity", {params:p}),
- //结束活动
- stop:(p)=> http.post('/cyzh-ldt/activity/updateBatch',p),
- //退出活动
- exit:(p)=> http.post('cyzh-ldt/activityjoinrecord/exitBatch',p),
- //参加活动
- join:(p)=> http.post('cyzh-ldt/activityjoinrecord/submit',p),
- //活动详情
- detail:p => http.get("/cyzh-ldt/activity/detail", {params:p}),
- }
- export const api={
- uploadFile,
- sms,
- mall,
- shop,
- memberCenter,
- activity
- }
|