20 lines
654 B
JavaScript
20 lines
654 B
JavaScript
// 开发环境url
|
|
export const dev = {
|
|
baseUrl: "https://dev.hospital.applets.igandanyiyuan.com",
|
|
staticHost: "https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com",//静态资源host
|
|
appId: 'wxbdb4d63f81d98228' //此处为appId
|
|
}
|
|
// 测试环境url
|
|
export const test = {
|
|
baseUrl: "http://www.xxx.com",
|
|
staticHost: "https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com",//静态资源host
|
|
appId: 'wxbdb4d63f81d98228' //此处为appId
|
|
}
|
|
|
|
// 线上环境url
|
|
export const prod = {
|
|
baseUrl: 'https://www.xxx.com',
|
|
staticHost: "https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com",//静态资源host
|
|
appId: 'wxbdb4d63f81d98228' //此处为appId
|
|
}
|