config.js 431 B

1234567891011121314
  1. let APP_SERVER_URL = ""
  2. if(process.env.NODE_ENV === 'development'){
  3. // 开发环境 http://47.97.69.114:8088/#/login
  4. //APP_SERVER_URL = 'http://47.97.69.114:8088/panhuangly/'
  5. APP_SERVER_URL = 'http://192.168.139.31:8071'
  6. //APP_SERVER_URL = 'https://ydwqfw.com.cn/yd_qycpfbWeb/yd_qycpfb'
  7. }else{
  8. // 生产环境
  9. APP_SERVER_URL = '/yd_qycpfb'
  10. //APP_SERVER_URL = '/yd_qycpfb_ce'
  11. }
  12. export default APP_SERVER_URL