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.

30 lines
1.6 KiB

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