website.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * 全局配置文件
  3. */
  4. export default {
  5. title: "常运-SMART 智慧园区大数据平台",
  6. logo: "CY",
  7. key: 'saber',//配置主键,目前用于存储
  8. indexTitle: '智慧园区大数据平台',
  9. clientId: 'saber', // 客户端id
  10. clientSecret: 'saber_secret', // 客户端密钥
  11. tenantMode: true, // 是否开启租户模式
  12. tenantId: "000000", // 管理组租户编号
  13. captchaMode: false, // 是否开启验证码模式
  14. lockPage: '/lock',
  15. tokenTime: 3000,
  16. tokenHeader: 'Blade-Auth',
  17. //http的status默认放行列表
  18. statusWhiteList: [],
  19. //配置首页不可关闭
  20. isFirstPage: false,
  21. fistPage: {
  22. label: "首页",
  23. value: "/wel/index",
  24. params: {},
  25. query: {},
  26. meta: {
  27. keepAlive: true
  28. },
  29. group: [],
  30. close: false
  31. },
  32. //配置菜单的属性
  33. menu: {
  34. iconDefault: 'iconfont icon-caidan',
  35. props: {
  36. label: 'name',
  37. path: 'path',
  38. icon: 'source',
  39. children: 'children'
  40. }
  41. },
  42. // 第三方系统授权地址
  43. authUrl: 'http://localhost/blade-auth/oauth/render',
  44. // 流程设计器地址
  45. flowDesignUrl: 'http://localhost:9999',
  46. // 报表设计器地址(cloud端口为8108,boot端口为80)
  47. reportUrl: 'http://localhost:8108/ureport',
  48. }