config.js 785 B

123456789101112131415161718192021222324252627282930313233
  1. // 应用全局配置
  2. module.exports = {
  3. // baseUrl: 'https://www.xcx.cczdsz.cn/prod-api',
  4. // baseUrl: 'http://192.168.4.6:8080',
  5. baseUrl: 'http://192.168.4.28:8080',
  6. // baseUrl: 'http://192.168.4.11:8080',
  7. // baseUrl: 'http://192.168.4.14:8089',
  8. baseUrl: 'http://192.168.4.88:8080',
  9. baseIconUrl: 'http://119.3.201.155:9000',
  10. // baseIconUrl: 'http://192.168.4.14:8080',
  11. // 应用信息
  12. appInfo: {
  13. // 应用名称
  14. name: "ruoyi-app",
  15. // 应用版本
  16. version: "1.1.0",
  17. // 应用logo
  18. logo: "/static/logo.png",
  19. // 官方网站
  20. site_url: "http://ruoyi.vip",
  21. // 政策协议
  22. agreements: [{
  23. title: "隐私政策",
  24. url: "https://ruoyi.vip/protocol.html"
  25. },
  26. {
  27. title: "用户服务协议",
  28. url: "https://ruoyi.vip/protocol.html"
  29. }
  30. ]
  31. }
  32. }