baseUrl.js 640 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/**
 * 鉴权地址
 */
const authUrl = 'http://test.icareyou.net' //  开发
// const authUrl = 'http://www.icareyou.net' //  正式

/**
 * 项目接口请求地址
 */
const baseUrl = '"http://voucher.check.icaremgt.com"' // 开发
// const baseUrl = '"http://voucher.icaremgt.com"' // 正式

/**
 * 机构控件项目接口请求地址
 */
16
const sjkgUrl = 'https://api-wx-service.check.icaremgt.com' // 开发
17
// const sjkgUrl = 'https://sjkg-wx-service.icaremgt.com' // 正式
18
// const sjkgUrl = 'http://192.168.1.234:9005'
19 20 21 22 23 24 25 26

const defaultUrl = {
  authUrl: authUrl,
  baseUrl: baseUrl,
  sjkgUrl: sjkgUrl
}

export default defaultUrl