config.js 663B

1234567891011121314151617181920212223242526272829
  1. // 应用全局配置
  2. module.exports = {
  3. baseUrl: 'https://api.xayunmei.com/zhongcaiapi',
  4. // baseUrl: 'http://121.40.189.20:9001',
  5. // baseUrl: 'http://192.168.3.77:8080',
  6. // baseUrl: 'http://localhost:8080',
  7. // baseUrl: 'http://192.168.3.18:9001',
  8. // 应用信息
  9. appInfo: {
  10. // 应用名称
  11. name: "arbitrate-wx",
  12. // 应用版本
  13. version: "1.1.0",
  14. // 应用logo
  15. logo: "/static/chuizi.png",
  16. // 官方网站
  17. site_url: "http://ruoyi.vip",
  18. // 政策协议
  19. agreements: [{
  20. title: "隐私政策",
  21. url: "https://ruoyi.vip/protocol.html"
  22. },
  23. {
  24. title: "用户服务协议",
  25. url: "https://ruoyi.vip/protocol.html"
  26. }
  27. ]
  28. }
  29. }