config.js 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // 应用全局配置
  2. export default {
  3. //#ifdef APP-PLUS
  4. baseUrl: "http://mobile.usky.cn:8099/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. agreements: [
  27. {
  28. title: "用户服务协议",
  29. content: "暂无数据",
  30. url: "http://file.usky.cn/statics/protocol.html",
  31. },
  32. {
  33. title: "隐私政策",
  34. content: "暂无数据",
  35. url: "http://file.usky.cn/statics/protocol.html",
  36. },
  37. ],
  38. },
  39. };