data.ts
685 Bytes
export interface GrowCardItem {
imgUrl: string;
title: string;
value: string;
onLine?: number;
offLine?: number;
inactive?: number;
newDay: string;
}
export const growCardList: GrowCardItem[] = [
{
imgUrl: '/src/assets/images/device-count.png',
title: '设备数(个)',
value: '10,000',
onLine: 2000,
offLine: 3000,
inactive: 4000,
newDay: '123,45',
},
{
imgUrl: '/src/assets/images/alarm-count.png',
title: '11月告警数(条)',
value: '11,000',
newDay: '167,45',
},
{
imgUrl: '/src/assets/images/msg-count.png',
title: '11月消息量(条)',
value: '12,000',
newDay: '198,45',
},
];