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.
|
|
|
// const host='https://xinfan.x-embers.com/api'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 测试域名
|
|
|
|
* */
|
|
|
|
//测试域名
|
|
|
|
const devhost='http://test.api.huitongys.com/'
|
|
|
|
// lmy
|
|
|
|
// const devhost='http://192.168.10.123:8889/'
|
|
|
|
// zhy
|
|
|
|
// const devhost='http://192.168.10.48:8888/'
|
|
|
|
// tjj
|
|
|
|
// const devhost='http://192.168.10.29:13000/'
|
|
|
|
// cyz
|
|
|
|
// const devhost='http://192.168.10.75:8777/'
|
|
|
|
// cg
|
|
|
|
// const devhost='http://192.168.10.200:8888/'
|
|
|
|
/**
|
|
|
|
* 正式域名
|
|
|
|
* */
|
|
|
|
const prohost='http://test.api.huitongys.com/'
|
|
|
|
/**
|
|
|
|
* 图片域名
|
|
|
|
* */
|
|
|
|
const imghost=''
|
|
|
|
/**
|
|
|
|
* API域名
|
|
|
|
* */
|
|
|
|
const host=process.env.NODE_ENV === 'development'?devhost:prohost
|
|
|
|
// const host='http://192.168.2.97:8888/'
|
|
|
|
/**
|
|
|
|
* APP加密参数
|
|
|
|
* */
|
|
|
|
const APPKEY='h5u:h5u_secret'
|
|
|
|
|
|
|
|
export { host , imghost , APPKEY }
|