fillterField.js 460 B

12345678910111213141516171819202122232425262728293031323334
  1. const data = {
  2. equipment: { //设备
  3. onlyRead: [],
  4. edit: []
  5. },
  6. tenant: { //租户
  7. onlyRead: [],
  8. edit: []
  9. },
  10. shaft: { //竖井
  11. onlyRead: [],
  12. edit: []
  13. },
  14. parts: { //部件
  15. onlyRead: [],
  16. edit: []
  17. },
  18. property:{ //资产
  19. onlyRead: [],
  20. edit: []
  21. },
  22. system:{ //系统
  23. onlyRead: [],
  24. edit: []
  25. },
  26. space:{//业务空间
  27. onlyRead: [
  28. "outline"
  29. ],
  30. edit: []
  31. }
  32. }
  33. export default data