apiurl.js 273 B

123456789101112131415161718192021222324
  1. /*
  2. 接口统一管理
  3. */
  4. const apiurl = {
  5. /** 案例 */
  6. case: {
  7. url: '/member/wechat/appletGetOpenId',
  8. type: 'get'
  9. }
  10. }
  11. /*
  12. * 特殊处理接口
  13. */
  14. const otherApiUrl = {
  15. // 文件上传
  16. uploadFile: '/file/upload/single/minio',
  17. }
  18. export {
  19. apiurl,
  20. otherApiUrl
  21. }