data.js 877 Bytes
const basicGridList = [{
		event: 'openCamera',
		icon: '/static/camer.png',
		text: '摄像头管理'
	},
	{
		event: 'openConfiguration',
		icon: '/static/status.png',
		text: '组态'
	},
]

const basicStatistics = [{
		text: '设备统计',
		icon: '/static/device-total.png',
		leftParam: 'ONLINE',
		centerParam: 'OFFLINE',
		rightParam: 'INACTIVE',
		value: {
			leftValue: 0,
			centerValue: 0,
			rightrValue: 0
		},
		label: {
			leftText: "在线",
			centerText: "离线",
			rightText: "待激活"
		}
	},
	{
		text: '告警统计',
		icon: '/static/alert.png',
		leftParam: ['ACTIVE_ACK'],
		centerParam: 'CLEARED_ACK',
		rightParam: 'CLEARED_UNACK',
		value: {
			leftValue: 0,
			centerValue: 0,
			rightrValue: 0
		},
		label: {
			leftText: "未处理",
			centerText: "已处理",
			rightText: "误报"
		}
	},
]

export {
	basicGridList,
	basicStatistics
}