| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- export const chartsColumns = (deviceType) => {
- if (deviceType === '') {
- return [];
- }
- };
- export const locationList = [
- {
- title: '风门',
- deviceType: 'gate',
- isVisible: 0,
- },
- {
- title: '风窗',
- deviceType: 'gate1',
- isVisible: 0,
- },
- {
- title: '测风装置',
- deviceType: 'gate2',
- isVisible: 0,
- },
- {
- title: '传感器',
- deviceType: 'gate3',
- isVisible: 0,
- },
- {
- title: '局部风机',
- deviceType: 'gate4',
- isVisible: 0,
- },
- {
- title: '主风机',
- deviceType: 'gate5',
- isVisible: 0,
- },
- {
- title: '风筒',
- deviceType: 'gate6',
- isVisible: 0,
- },
- {
- title: '密闭墙',
- deviceType: 'gate7',
- isVisible: 0,
- },
- ];
|