import { Grid } from '@material-ui/core'; import React from 'react'; import useRequest from '../../../../utils/useRequest'; import { skInfo } from '../../../../models/_/search'; import { adnmCun, adnmZhen } from '../../../../models/_/adcd'; import { Person } from '@material-ui/icons'; import PanelBox from '../../components/PanelBox'; import Table from '@material-ui/core/Table'; import TableContainer from '@material-ui/core/TableContainer'; import TableBody from '@material-ui/core/TableBody'; import TableHead from '@material-ui/core/TableHead'; import TableRow from '@material-ui/core/TableRow'; import DpTableCell from '../../../../layouts/mui/DpTableCell'; import DpTableRow from '../../../../layouts/mui/DpTableRow'; function SkInfo() { const data = [ { name:'行政责任人', dm:'郑家豪', hfsw:'龟山镇人民政府', hfll:'组织委员', tm:'05-29 14:00' }, { name:'巡查责任人', dm:'熊中良', hfsw:'花桥河村', hfll:'书记', tm:'05-29 14:30' }, { name:'技术责任人', dm:'余健', hfsw:'农业农村服务中心', hfll:'副主任', tm:'05-29 15:00' }, ] return (
责任人 姓名 单位 职务 {data.map((row) => (
{}}>{row.name}
{row.dm} {row.hfsw} {row.hfll}
))}
) } export default SkInfo;