data.js 993 Bytes
const basicGridList = [{
		event: 'openCamera',
		icon: '/static/camer.png',
		text: '摄像头管理'
	},
	{
		event: 'openConfiguration',
		icon: '/static/status.png',
		text: '组态'
	},
	{
		event: 'visualBoard',
		icon: '/static/visual-board.png',
		text: '看板'
	},
]

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

export {
	basicGridList,
	basicStatistics
}