website.js 848 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * 全局配置文件
  3. */
  4. export default {
  5. title: '梧桐树项目云',
  6. tenant: '000000',
  7. clientId: 'project_web', // 客户端id
  8. clientSecret: 'project_web_key', // 客户端密钥
  9. statusWhiteList: [],
  10. wss: import.meta.env.DEV
  11. ? 'wss://dev.wutongshucloud.com/ws/websocket/'
  12. : 'wss://prod.wutongshucloud.com/ws/websocket/',
  13. baseUrl: import.meta.env.DEV
  14. ? 'https://dev.wutongshucloud.com/'
  15. : 'https://prod.wutongshucloud.com/',
  16. reportTypes: [
  17. {
  18. label: '未备案/批复',
  19. value: 0
  20. },
  21. {
  22. label: '已备案/批复(未上报)',
  23. value: 1
  24. },
  25. {
  26. label: '待审核',
  27. value: 2
  28. },
  29. {
  30. label: '审核通过',
  31. value: 3
  32. },
  33. {
  34. label: '审核未通过',
  35. value: 4
  36. },
  37. {
  38. label: '固定资产',
  39. value: 5
  40. }
  41. ]
  42. }