12345678910111213141516171819202122232425262728293031 |
- const BASEURL = process.env.VUE_APP_DOMAIN_PREFIX
- export const api = {
-
- fileUpload: BASEURL + '/file/upload',
- getClassify: BASEURL + '/canvas/getClassify',
- getProducts: BASEURL + '/canvas/getProducts',
- saveCanvas: BASEURL + '/canvas/saveCanvas',
- getCanvas: BASEURL + '/canvas/getCanvas',
- getShops: BASEURL + '/canvas/getShops',
- getCoupons: BASEURL + '/canvas/getCoupons',
- getShopCoupons: BASEURL + '/canvas/getShopCoupons',
- takeCoupon: BASEURL + '/coupon/takeCoupon',
- selectCanvasCustomList: BASEURL + '/canvas/selectCanvasCustomList',
- getPlatformSeckills: `${BASEURL}/canvas/getPlatformSeckills`,
- getSeckills: `${BASEURL}/renovation/getSeckills`,
- getMinDiscount: `${BASEURL}/canvas/getMinDiscount`,
- getDiscounts: `${BASEURL}/renovation/getDiscounts`,
- getAdminGroupWorks: `${BASEURL}/canvas/getGroupWorks`,
- getGroupWorks: `${BASEURL}/renovation/getGroupWorks`,
- getPriceProducts: `${BASEURL}/canvas/getPriceProducts`,
- getPrices: `${BASEURL}/canvas/getPrices`,
- getMemberProducts: `${BASEURL}/canvas/getMemberProducts`,
- getNotices: `${BASEURL}/canvas/getNotices`,
- getNoticesAll: `${BASEURL}/notice/getAll`,
- }
- export default api
|