pxzsky
2023-03-09 0ec455ce15b1ddfae24689a79fb9d381099f0bce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
/*开发环境*/
const dev = {
  //baseUrl: 'http://101.43.168.96:8082/admin',
  baseUrl: 'http://localhost:8082/admin',
  ftpUrl: 'https://echftp.jinmingyuan.com',
  AccessTokenKey:'PC-ADMIN-TOKEN',  // token
  timeout: 15 // 请求超时时间、
}
/*测试环境*/
const test = {
  baseUrl: 'http://101.43.168.96:8082/admin',
  ftpUrl: 'https://echftp.jinmingyuan.com',
  AccessTokenKey:'PC-ADMIN-TOKEN',  // token
  timeout: 15 // 请求超时时间、
}
 
/*正式环境*/
const prod = {
  baseUrl: 'http://101.43.168.96:8082/admin',
  ftpUrl: 'http://10.8.90.22:80/sftp',
  AccessTokenKey:'PC-ADMIN-TOKEN',  // token
  timeout: 15 // 请求超时时间、
}
 
const globalConf = dev