_prefix.ts 361 B

123456789101112
  1. export const API_MODULE = '/api'
  2. //用户模块
  3. export const USER_MODULE= `${API_MODULE}/users`
  4. //商店模块
  5. export const STORE_MODULE= `${API_MODULE}/stores`
  6. //商品模块
  7. export const PRODUCT_MODULE= `${API_MODULE}/products`
  8. //订单模块
  9. export const ORDER_MODULE= `${API_MODULE}/orders`
  10. //图片模块
  11. export const IMAGE_MODULE= `${API_MODULE}/images`