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.

32 lines
1.6 KiB

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