import React from 'react' import { Image } from 'antd' export default function Card({record}) { return (
{record.type == 1 ? "人员闯入" : record.type == 2 ? "工程车辆识别" : record.type == 3 ? "漂浮物识别" : record.type == 4 ? "游泳识别" : '' } {record?.tm}
{record?.name}
) }