货无忧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
988 B

2 years ago
// const host='https://xinfan.x-embers.com/api'
2 years ago
2 years ago
/**
2 years ago
* 测试域名
2 years ago
* */
1 year ago
//测试域名
// const devhost = 'http://test.api.huitongys.com/'
1 year ago
// lmy
// const devhost = 'http://192.168.10.123:8889/'
// zhy
// const devhost = 'http://192.168.10.48:13000/'
1 year ago
// tjj
// const devhost = 'http://192.168.10.25:13000/'
1 year ago
// cyz
// const devhost = 'http://192.168.6.148:9777/'
// const devhost = 'http://192.168.6.141:8777/'
// cg
1 year ago
// const devhost = 'http://192.168.10.57:13000/'
7
1 year ago
// 正式
1 year ago
const devhost = 'https://h5uapi.huitongys.com/'
1 year ago
// cg
// const devhost = 'http://192.168.10.200:13000/'
2 years ago
/**
2 years ago
* 正式域名
2 years ago
* */
const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'http://test.api.huitongys.com/'
2 years ago
/**
* 图片域名
* */
const imghost = ''
2 years ago
/**
2 years ago
* API域名
* */
const host = process.env.NODE_ENV === 'development' ? devhost : prohost
2 years ago
// const host='http://192.168.2.97:8888/'
/**
* APP加密参数
2 years ago
* */
const APPKEY = 'h5u:h5u_secret'
2 years ago
export {
host,
imghost,
APPKEY
}