1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export const msgData = [
- {
- msgType: '即时状态',
- msgTypeId: 1,
- id: '001',
- msgName: '001信息点',
- checked: false
- },
- {
- msgType: '即时状态',
- msgTypeId: 1,
- id: '002',
- msgName: '002信息点',
- checked: false
- },
- {
- msgType: '即时状态',
- msgTypeId: 1,
- id: '003',
- msgName: '003信息点',
- checked: false
- },
- {
- msgType: '累计指标',
- msgTypeId: 2,
- id: '004',
- msgName: '001信息点'
- , checked: false
- },
- {
- msgType: '累计指标',
- msgTypeId: 2,
- id: '005',
- msgName: '002信息点'
- , checked: false
- },
- {
- msgType: '累计指标',
- msgTypeId: 2,
- id: '006',
- msgName: '003信息点'
- , checked: false
- }
- ]
|