|
@ -1,35 +1,34 @@ |
|
|
const CONFIG = { |
|
|
const CONFIG = { |
|
|
//开发环境配置
|
|
|
//开发环境配置
|
|
|
development: { |
|
|
|
|
|
|
|
|
development: { |
|
|
|
|
|
baseUrl: "http://testmanager.ouxuanzhineng.cn", //测试环境
|
|
|
|
|
|
// baseUrl: "https://testmatch.ouxuanzhineng.cn",
|
|
|
|
|
|
testOpenId: "wxacdbba29503f6351", // 小程序测试openId
|
|
|
loginTitleTxt: "development_wx", // 登录页标题
|
|
|
loginTitleTxt: "development_wx", // 登录页标题
|
|
|
copyrightTxt: "XXXv1.0", // 版本信息
|
|
|
copyrightTxt: "XXXv1.0", // 版本信息
|
|
|
assetsPath: "http://cdn.com/img", // 静态资源路径
|
|
|
assetsPath: "http://cdn.com/img", // 静态资源路径
|
|
|
// baseUrl: "http://testmanager.ouxuanzhineng.cn", //测试环境
|
|
|
|
|
|
// baseUrl: "https://testmatch.ouxuanzhineng.cn",
|
|
|
|
|
|
baseUrl: "https://match.ouxuanzhineng.cn", |
|
|
|
|
|
// tokenKey: "wxacdbba29503f6351", // 登录标识 测试环境
|
|
|
|
|
|
tokenKey: "wxf368fa7316d6952f", // 登录标识
|
|
|
|
|
|
testOpenId: "", // 小程序测试openId
|
|
|
|
|
|
|
|
|
tokenKey: "WECHAT_TRADE", // 登录标识
|
|
|
forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
|
|
|
forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
|
|
|
touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
|
|
|
touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
|
|
|
showLog:true, //是否开启log
|
|
|
showLog:true, //是否开启log
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
//生产环境配置
|
|
|
//生产环境配置
|
|
|
production: { |
|
|
|
|
|
|
|
|
production: { |
|
|
|
|
|
baseUrl: "https://match.ouxuanzhineng.cn", |
|
|
|
|
|
testOpenId: "wxf368fa7316d6952f", // 小程序openId
|
|
|
loginTitleTxt: "production_wx", // 登录页标题
|
|
|
loginTitleTxt: "production_wx", // 登录页标题
|
|
|
copyrightTxt: "XXXv1.0", // 版本信息
|
|
|
copyrightTxt: "XXXv1.0", // 版本信息
|
|
|
assetsPath: "/static/img", // 静态资源路径
|
|
|
assetsPath: "/static/img", // 静态资源路径
|
|
|
// baseUrl: "https://testmatch.ouxuanzhineng.cn", // 测试环境
|
|
|
|
|
|
baseUrl: "https://match.ouxuanzhineng.cn", |
|
|
|
|
|
tokenKey: "WECHAT_TRADE", // 登录标识
|
|
|
tokenKey: "WECHAT_TRADE", // 登录标识
|
|
|
// testOpenId: "wxacdbba29503f6351", // 小程序测试openId
|
|
|
|
|
|
testOpenId: "wxf368fa7316d6952f", // 小程序测试openId
|
|
|
|
|
|
forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
|
|
|
forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
|
|
|
touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
|
|
|
touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
|
|
|
showLog:true, //是否开启log
|
|
|
showLog:true, //是否开启log
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
console.log(123,process.env.NODE_ENV); |
|
|
|
|
|
export default CONFIG[process.env.NODE_ENV]; |
|
|
|
|
|
|
|
|
console.log("NODE_ENV:",process.env.NODE_ENV); |
|
|
|
|
|
// export default CONFIG[process.env.NODE_ENV];
|
|
|
|
|
|
export default CONFIG['development'] |
|
|
|
|
|
// export default CONFIG['production']
|
|
|
|
|
|
|