货无忧
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.

28 lines
595 B

2 years ago
// const host='https://xinfan.x-embers.com/api'
1 year ago
2 years ago
/**
1 year ago
* 测试域名
2 years ago
* */
1 year ago
// const devhost='http://192.168.10.51:8888/'
1 year ago
// const devhost='http://192.168.10.126:8889/'
1 year ago
const devhost='http://192.168.10.73:8777/'
1 year ago
// const host='http://192.168.1.5:9503/api'
2 years ago
/**
1 year ago
* 正式域名
2 years ago
* */
1 year ago
const prohost='http://192.168.10.100:9999/'
2 years ago
/**
* 图片域名
* */
const imghost=''
/**
1 year ago
* API域名
* */
const host=process.env.NODE_ENV === 'development'?devhost:prohost
// const host='http://192.168.2.97:8888/'
/**
* APP加密参数
2 years ago
* */
const APPKEY='h5u:h5u_secret'
1 year ago
export { host , imghost , APPKEY }