12345678910111213141516171819202122232425262728293031323334 |
- const data = {
- equipment: { //设备
- onlyRead: [],
- edit: []
- },
- tenant: { //租户
- onlyRead: [],
- edit: []
- },
- shaft: { //竖井
- onlyRead: [],
- edit: []
- },
- parts: { //部件
- onlyRead: [],
- edit: []
- },
- property:{ //资产
- onlyRead: [],
- edit: []
- },
- system:{ //系统
- onlyRead: [],
- edit: []
- },
- space:{//业务空间
- onlyRead: [
- "outline"
- ],
- edit: []
- }
- }
- export default data
|