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.
21 lines
744 B
21 lines
744 B
const VUE_APP_PLATFORM = process.env.VUE_APP_PLATFORM || 'h5';
|
|
|
|
|
|
// localIp = false
|
|
let obj = {
|
|
H5_API: VUE_APP_PLATFORM === 'h5' ? '/api' : '',//h5代理
|
|
WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://192.168.1.106:8518/',//非代理地址 不要忘记加/
|
|
website: 'http://192.168.1.37',
|
|
httpPrefix: 'app-api/',
|
|
imgUrl: 'http://47.96.82.242/htmls/',
|
|
// 支付测试地址
|
|
// preUrl: 'https://u8wbs.zyebank.cn/cem_ysb_u6/index.html',
|
|
// const preUrl = 'https://u8wbs.zyebank.cn/cem_ysb_u8/index.html'
|
|
// 生产地址
|
|
preUrl: 'https://zmcht.zybank.com.cn/cem_ysb/index.html',
|
|
};
|
|
|
|
export default obj
|
|
// http://192.168.1.106:8518/测试地址
|
|
// http://192.168.1.43:8318/本地地址
|
|
//http://www.lyjppt.com/正式地址
|