23 lines
1009 B
JavaScript
23 lines
1009 B
JavaScript
// 开发环境url
|
|
export const dev = {
|
|
baseUrl: "https://dev.hospital.applets.igandanyiyuan.com",
|
|
staticHost: "https://img.applets.igandanyiyuan.com",//静态资源host
|
|
IMappId: '1600022752', //此处为IM appId
|
|
IMsecretkey: 'fc45ab469ca632a700166973d87b3a6f56a855cb92d7cffb54e4d37135c097da' //此处为IM secretkey
|
|
}
|
|
// 测试环境url
|
|
export const test = {
|
|
baseUrl: "https://dev.hospital.applets.igandanyiyuan.com",
|
|
staticHost: "https://img.applets.igandanyiyuan.com",//静态资源host
|
|
IMappId: '1600022752', //此处为此处为IM appId
|
|
IMsecretkey: 'fc45ab469ca632a700166973d87b3a6f56a855cb92d7cffb54e4d37135c097da' //此处为IM secretkey
|
|
}
|
|
|
|
// 线上环境url
|
|
export const prod = {
|
|
baseUrl: 'https://prod.hospital.applets.igandanyiyuan.com',
|
|
staticHost: "https://oss.prod.applets.igandanyiyuan.com",//静态资源host
|
|
IMappId: '1400796919', //此处为此处为IM appId
|
|
IMsecretkey: 'a5bcd8c583181cf004e9d91a47687d719d4b5d2a10ce33fbee95d587889447d8' //此处为IM secretkey
|
|
}
|