config.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /**
  14. * 后端环境配置
  15. */
  16. let baseUrl = null // 后端服务接口
  17. let upFileUrl= null // 后端上传接口
  18. let staticUrl= null // 静态文件地址
  19. //64
  20. // #ifdef MP
  21. baseUrl='https://greatadmin.dev.dazesoft.cn/serviceapi';
  22. upFileUrl='http://fileupload.dev.dazesoft.cn/upload/single/minio';
  23. // staticUrl='http://res.dev.dazesoft.cn/xushuo/';
  24. staticUrl='https://miniores.dev.dazesoft.cn/greattransition/staticfile';
  25. // #endif
  26. // #ifdef H5
  27. baseUrl='https://greath5.dev.dazesoft.cn/serviceapi';
  28. upFileUrl='http://fileupload.dev.dazesoft.cn/upload/single/minio';
  29. // staticUrl='http://res.dev.dazesoft.cn/xushuo/';
  30. staticUrl='https://miniores.dev.dazesoft.cn/greattransition/staticfile';
  31. // #endif
  32. //正式
  33. // #ifdef MP
  34. // baseUrl='https://serviceapi.wdzzgs.com';
  35. // upFileUrl='https://serviceapi.wdzzgs.com/thirdapi/upload/single/minio';
  36. staticUrl='https://minio.wdzzgs.com/greattransition/staticfile';
  37. // #endif
  38. // #ifdef H5
  39. // baseUrl='https://xusapi.gzxsjt.cn/appapi/app';
  40. // upFileUrl='https://xusapi.gzxsjt.cn/thirdapi/upload/single/minio';
  41. // staticUrl='https://xusapi.gzxsjt.cn/miniores/imgs/app';
  42. // #endif
  43. const commonConfig = {
  44. wxAppid: '', // 测试wxAppid
  45. baseUrl: baseUrl, // 服务器地址
  46. uploadFileUrl: upFileUrl, // 上传文件路径
  47. staticUrl:staticUrl,
  48. paginationConfig:{
  49. pageNum: 1,
  50. pageSize: 10
  51. },//分页参数
  52. successCode:200,//接口返回状态
  53. }
  54. export {
  55. commonConfig
  56. }