config.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // 应用全局配置
  2. export default {
  3. //#ifdef APP-PLUS || MP-WEIXIN
  4. baseUrl: "http://manager.usky.cn/prod-api",
  5. //#endif
  6. //#ifdef H5
  7. baseUrl: import.meta.env.MODE === "production" ? "http://" + window.location.host + "/prod-api" : "http://172.16.120.165:13200/prod-api",
  8. //#endif
  9. websiteUrl: "https://qhome.usky.cn",
  10. // NODE_ENV=devlopment
  11. // 应用信息
  12. appInfo: {
  13. // 应用名称
  14. name: "usky-app-mobile",
  15. // 应用版本
  16. version: "2.0.0",
  17. // 应用logo
  18. logo: "/static/logo.png",
  19. // 官网邮箱
  20. email: "admin@chinausky.com",
  21. // 服务热线
  22. hotline: "021-65376655",
  23. // 官方网站
  24. site_url: "http://www.usky.cn/",
  25. // 版权
  26. copyright:"Copyright © 2021- 2025 Usky. All Rights Reserved. 永天股份 版权所有",
  27. // 政策协议
  28. agreements: [
  29. {
  30. title: "用户服务协议",
  31. content: "暂无数据",
  32. url: "http://file.usky.cn/statics/protocol.html",
  33. },
  34. {
  35. title: "隐私政策",
  36. content: "暂无数据",
  37. url: "http://file.usky.cn/statics/protocol.html",
  38. },
  39. ],
  40. },
  41. };