defaultConfig.js 736 B

1234567891011121314151617181920212223
  1. // //正式环境
  2. // const productionUrl = 'https://wanbei.monvkeji.cn/'
  3. // // 测试环境
  4. // const testUrl = 'https://wanbei.monvkeji.cn/'
  5. // // 开发环境
  6. // const developUrl = 'http://192.168.10.166:7114/'
  7. // export default {
  8. // // 系统名称
  9. // name: "签约",
  10. // apiUrl: process.env.NODE_ENV !== 'production' ? testUrl : testUrl,
  11. // }
  12. //正式环境
  13. const productionUrl = 'https://wanbei.monvkeji.cn/'
  14. // 测试环境
  15. const testUrl = 'https://wanbei.monvkeji.cn/'
  16. // 开发环境
  17. const developUrl = 'http://192.168.10.166:7114/'//余红奇
  18. // const developUrl = 'http://192.168.10.170:7114/'//陈果
  19. export default {
  20. // 系统名称
  21. name: "签约",
  22. apiUrl: process.env.NODE_ENV !== 'production' ? developUrl : testUrl,
  23. }