config.js 988 B

1234567891011121314151617181920212223242526272829303132333435
  1. // 应用全局配置
  2. module.exports = {
  3. // baseUrl: 'https://zhsq.qs163.cn/prod-api',
  4. // baseUrl: 'http://47.99.82.249:5011/prod-api',
  5. baseUrl: 'http://192.168.101.245:8077',
  6. // baseUrl: 'http://192.168.101.86:8074',
  7. // baseUrl: 'http://10.90.90.52:8065',
  8. // baseUrl: 'http://10.90.90.53:8065',
  9. // baseUrlimg: 'http://114.99.127.243:2001',
  10. baseName:'智慧社区物管端',
  11. Clientid:'428a8310cd442757ae699df5d894f051',//
  12. grantType:'password',//
  13. userType:'app_staff',//app_user:用户端,app_staff:物管端
  14. // 应用信息
  15. appInfo: {
  16. // 应用名称
  17. name: "ruoyi-app",
  18. // 应用版本
  19. version: "1.1.0",
  20. // 应用logo
  21. logo: "/static/logo.png",
  22. // 官方网站
  23. site_url: "http://ruoyi.vip",
  24. // 政策协议
  25. agreements: [{
  26. title: "隐私政策",
  27. url: "https://ruoyi.vip/protocol.html"
  28. },
  29. {
  30. title: "用户服务协议",
  31. url: "https://ruoyi.vip/protocol.html"
  32. }
  33. ]
  34. }
  35. }