config.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 配置通用
  3. */
  4. // const node_dev = process.env.H_NODE_ENV;
  5. // //运行到浏览器用的
  6. // let baseUrl='/api';
  7. // let upFileUrl='/api';
  8. // //打包用的
  9. // if (node_dev) {
  10. // baseUrl = process.env.H_BASE_URL;
  11. // upFileUrl = process.env.H_UP_FILE_URL
  12. // }
  13. //64
  14. let baseUrl='https://scenicadmin.hw.hongweisoft.com/serviceapi';
  15. let upFileUrl='http://fileupload.hw.hongweisoft.com/upload/single/minio';
  16. // let staticUrl='http://res.hw.hongweisoft.com/xushuo/';
  17. let staticUrl='https://miniores.hw.hongweisoft.com/greattransition/staticfile';
  18. //正式
  19. // let baseUrl='https://xusapi.gzxsjt.cn/appapi/app';
  20. // let upFileUrl='https://xusapi.gzxsjt.cn/thirdapi/upload/single/minio';
  21. // let staticUrl='https://xusapi.gzxsjt.cn/miniores/imgs/app';
  22. const commonConfig = {
  23. wxAppid: '', // 测试wxAppid
  24. baseUrl: baseUrl, // 服务器地址
  25. uploadFileUrl: upFileUrl, // 上传文件路径
  26. staticUrl:staticUrl,
  27. paginationConfig:{
  28. pageNum: 1,
  29. pageSize: 10
  30. },//分页参数
  31. successCode:200,//接口返回状态
  32. }
  33. export {
  34. commonConfig
  35. }