global.js 450 B

1234567891011121314151617
  1. /**
  2. * 全局常量、方法封装模块
  3. * 通过原型挂载到Vue属性
  4. * 通过 this.Global 调用
  5. */
  6. // 后台管理系统服务器地址
  7. export const baseUrl = 'http://139.196.87.48:8001'
  8. // export const baseUrl = 'http://localhost:8001'
  9. // 系统数据备份还原服务器地址
  10. export const backupBaseUrl = 'http://139.196.87.48:8002'
  11. // export const backupBaseUrl = 'http://localhost:8002'
  12. export default {
  13. baseUrl,
  14. backupBaseUrl
  15. }