Blame view

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