多租户商城-商户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. // 导入api接口模块
  2. // 获取当前环境变量 true => 生产环境 false => 开发环境
  3. const BASEURL = process.env.VUE_APP_DOMAIN_PREFIX
  4. // const BASEURL = (process.env.NODE_ENV === 'production') ? '/api' : '/api'
  5. export const api = {
  6. // 画布模块
  7. fileUpload: BASEURL + '/file/upload', // 文件上传
  8. getClassify: BASEURL + '/canvas/getClassify', // 查询分类层级
  9. getProductGroup: BASEURL + '/canvas/getProductGroup', // 查询分类层级
  10. getProducts: BASEURL + '/canvas/getProducts', // 选择商品查询
  11. getInteractionDiagrams: BASEURL + '/canvas/getInteractionDiagrams', // 选择互动图查询
  12. saveCanvas: BASEURL + '/canvas/saveCanvas', // 保存画布
  13. getCanvas: BASEURL + '/canvas/getCanvas', // 读取画布
  14. getShops: BASEURL + '/canvas/getShops', // 选择店铺查询
  15. getCoupons: BASEURL + '/canvas/getCoupons', // 优惠券查询
  16. getShopCoupons: BASEURL + '/canvas/getShopCoupons', // 优惠券查询
  17. takeCoupon: BASEURL + '/coupon/takeCoupon', // 领取优惠券
  18. selectCanvasCustomList: BASEURL + '/canvas/selectCanvasCustomList', // 自定义页面查询
  19. getPlatformSeckills: `${BASEURL}/canvas/getPlatformSeckills`, // 平台秒杀活动
  20. getSeckills: `${BASEURL}/renovation/getSeckills`, // 商家秒杀活动
  21. getMinDiscount: `${BASEURL}/canvas/getMinDiscount`, // 平台限时折扣
  22. getDiscounts: `${BASEURL}/renovation/getDiscounts`, // 商家限时折扣
  23. getAdminGroupWorks: `${BASEURL}/canvas/getGroupWorks`, // 平台拼团专区
  24. getGroupWorks: `${BASEURL}/renovation/getGroupWorks`, // 商家拼团专区
  25. getPriceProducts: `${BASEURL}/canvas/getPriceProducts`, // 商家定价捆绑
  26. getPrices: `${BASEURL}/canvas/getPrices`, // 商家定价捆绑
  27. getMemberProducts: `${BASEURL}/canvas/getMemberProducts`, // 查询会员商品数据
  28. getNotices: `${BASEURL}/canvas/getNotices`, // 平台获取公告数据
  29. getNoticesAll: `${BASEURL}/notice/getAll`, // 平台获取公告数据
  30. }
  31. export default api