uni-events-helper-wx
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.

33 lines
1.7 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. const CONFIG = {
  2. //开发环境配置
  3. development: {
  4. baseUrl: "https://testmatch.ouxuanzhineng.cn", //测试环境
  5. testOpenId: "wxacdbba29503f6351", // 小程序测试openId
  6. loginTitleTxt: "development_wx", // 登录页标题
  7. copyrightTxt: "XXXv1.0", // 版本信息
  8. assetsPath: "http://cdn.com/img", // 静态资源路径
  9. tokenKey: "WECHAT_TRADE", // 登录标识
  10. forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
  11. touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
  12. showLog:true, //是否开启log
  13. },
  14. //生产环境配置
  15. production: {
  16. baseUrl: "https://match.ouxuanzhineng.cn",
  17. testOpenId: "wxf368fa7316d6952f", // 小程序openId
  18. loginTitleTxt: "production_wx", // 登录页标题
  19. copyrightTxt: "XXXv1.0", // 版本信息
  20. assetsPath: "/static/img", // 静态资源路径
  21. tokenKey: "WECHAT_TRADE", // 登录标识
  22. forcedLogin: false, // touristMode游客模式下APP是否强制用户登录 场景:当用户进入登录页面后无法后退。
  23. touristMode: true, // APP是否开启游客模式, 游客模式true开启:APP打开后可以进入首页和无权限的页面,游客模式false关闭:APP打开后首先需要登录才能进入, 此时forcedLogin配置项失效。
  24. showLog:true, //是否开启log
  25. }
  26. }
  27. console.log("NODE_ENV:",process.env.NODE_ENV);
  28. // export default CONFIG[process.env.NODE_ENV];
  29. export default CONFIG['development']
  30. // export default CONFIG['production']