config.js 753 B

12345678910111213141516171819202122232425262728293031
  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.20:8080',
  6. // baseUrl: 'http://192.168.4.11:8080',
  7. baseUrl: 'http://192.168.4.23:8080',
  8. // baseUrl: 'http://192.168.4.14:8089',
  9. baseIconUrl: 'https://www.xcx.cczdsz.cn/app/images/',
  10. // 应用信息
  11. appInfo: {
  12. // 应用名称
  13. name: "ruoyi-app",
  14. // 应用版本
  15. version: "1.1.0",
  16. // 应用logo
  17. logo: "/static/logo.png",
  18. // 官方网站
  19. site_url: "http://ruoyi.vip",
  20. // 政策协议
  21. agreements: [{
  22. title: "隐私政策",
  23. url: "https://ruoyi.vip/protocol.html"
  24. },
  25. {
  26. title: "用户服务协议",
  27. url: "https://ruoyi.vip/protocol.html"
  28. }
  29. ]
  30. }
  31. }