main
wangyunfei 5 days ago
parent e06fa56d51
commit 8ae7a7e7bb

@ -26,62 +26,68 @@ const Yjdw = () => {
{ {
key: '1', key: '1',
number: '01', number: '01',
unitName: '文登市兴文新材料有限公司', affiliatedUnit: '文登市兴文新材料有限公司',
name: '国云海', teamName: '消防队伍一',
position: '生产班长', teamType: '危险化学品事故救援队',
mobile: '17898786567', teamAddress: '站前北街30号附近',
email: '1878967633@qq.com', teamSize: 79,
dutyTime: '夜班', personInCharge: '李世敏',
remarks: '备注一',
}, },
{ {
key: '2', key: '2',
number: '02', number: '02',
unitName: '文登市兴文新材料有限公司', affiliatedUnit: '文登市兴文新材料有限公司',
name: '陈志强', teamName: '医疗队伍一',
position: '生产班长', teamType: '医疗救护队',
mobile: '17898786567', teamAddress: '新顺北大街8号西南60米',
email: '1878967633@qq.com', teamSize: 55,
dutyTime: '白班', personInCharge: '赵小瑞',
remarks: '备注二二',
}, },
{ {
key: '3', key: '3',
number: '03', number: '03',
unitName: '合湾新材科技有限公司', affiliatedUnit: '合鸿新材科技有限公司',
name: '侯文涛', teamName: '救援队伍一',
position: '班长', teamType: '陆地搜寻与救护队',
mobile: '17898786567', teamAddress: '1号楼通顺路',
email: '1878967633@qq.com', teamSize: 41,
dutyTime: '白班', personInCharge: '钱珈艺',
remarks: '备注三三',
}, },
{ {
key: '4', key: '4',
number: '04', number: '04',
unitName: '山东万图高分子材料股份有限公司', affiliatedUnit: '山东万图高分子材料股份...',
name: '宋东', teamName: '救援队伍二',
position: '班长', teamType: '危险化学品事故救援队',
mobile: '17898786567', teamAddress: '仁和镇双兴东区甲1号楼',
email: '1878967633@qq.com', teamSize: 29,
dutyTime: '夜班', personInCharge: '赵露瑕',
remarks: '备注四四',
}, },
{ {
key: '5', key: '5',
number: '05', number: '05',
unitName: '合鸿新材科技有限公司', affiliatedUnit: '合鸿新材科技有限公司',
name: '王一声', teamName: '医疗队伍二',
position: '班长', teamType: '医疗救护队',
mobile: '17898786567', teamAddress: '怡馨家园5号楼',
email: '1878967633@qq.com', teamSize: 21,
dutyTime: '夜班', personInCharge: '李彤运',
remarks: '备注五五',
}, },
{ {
key: '6', key: '6',
number: '06', number: '06',
unitName: '山东万图高分子材料股份有限公司', affiliatedUnit: '山东万图高分子材料股份...',
name: '赵小敏', teamName: '救援队伍二',
position: '班长', teamType: '医疗救护队',
mobile: '17898786567', teamAddress: '站前东街商业楼118号',
email: '1878987633@qq.com', teamSize: 7,
dutyTime: '夜班', personInCharge: '钱唯',
remarks: '备注六六',
}, },
]); ]);
@ -94,39 +100,45 @@ const Yjdw = () => {
width: 80, width: 80,
}, },
{ {
title: '单位名称', title: '所属单位',
dataIndex: 'unitName', dataIndex: 'affiliatedUnit',
key: 'unitName', key: 'affiliatedUnit',
width: 200, width: 200,
}, },
{ {
title: '姓名', title: '队伍名称',
dataIndex: 'name', dataIndex: 'teamName',
key: 'name', key: 'teamName',
width: 100, width: 150,
}, },
{ {
title: '职务', title: '队伍类型',
dataIndex: 'position', dataIndex: 'teamType',
key: 'position', key: 'teamType',
width: 120, width: 180,
}, },
{ {
title: '手机号', title: '队伍地址',
dataIndex: 'mobile', dataIndex: 'teamAddress',
key: 'mobile', key: 'teamAddress',
width: 130, width: 200,
}, },
{ {
title: '邮箱', title: '队伍人数(人)',
dataIndex: 'email', dataIndex: 'teamSize',
key: 'email', key: 'teamSize',
width: 180, width: 120,
}, },
{ {
title: '值班时间', title: '负责人',
dataIndex: 'dutyTime', dataIndex: 'personInCharge',
key: 'dutyTime', key: 'personInCharge',
width: 120,
},
{
title: '备注',
dataIndex: 'remarks',
key: 'remarks',
width: 100, width: 100,
}, },
{ {
@ -191,14 +203,14 @@ const Yjdw = () => {
// 编辑处理 // 编辑处理
const handleEdit = (record) => { const handleEdit = (record) => {
message.info(`编辑 ${record.name} 的信息`); message.info(`编辑 ${record.teamName} 的信息`);
}; };
// 删除处理 // 删除处理
const handleDelete = (record) => { const handleDelete = (record) => {
Modal.confirm({ Modal.confirm({
title: '确认删除', title: '确认删除',
content: `确定要删除 ${record.name} 吗?`, content: `确定要删除 ${record.teamName} 吗?`,
onOk() { onOk() {
setDataSource(dataSource.filter(item => item.key !== record.key)); setDataSource(dataSource.filter(item => item.key !== record.key));
message.success('删除成功'); message.success('删除成功');
@ -223,17 +235,23 @@ const Yjdw = () => {
<div className={styles.searchBar}> <div className={styles.searchBar}>
<div className={styles.searchLeft}> <div className={styles.searchLeft}>
<Select <Select
placeholder="请选择单位名称" placeholder="请选择单位"
value={searchValue} value={searchValue}
onChange={setSearchValue} onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}} style={{width: 180, height: 30, borderRadius: 2}}
allowClear allowClear
> >
<Option value="文登市兴文新材料有限公司">文登市兴文新材料有限公司</Option> <Option value="危险化学品事故救援队">危险化学品事故救援队</Option>
<Option value="合湾新材科技有限公司">合湾新材科技有限公司</Option> <Option value="医疗救护队">医疗救护队</Option>
<Option value="山东万图高分子材料股份有限公司">山东万图高分子材料股份有限公司</Option> <Option value="陆地搜寻与救护队">陆地搜寻与救护队</Option>
<Option value="合鸿新材科技有限公司">合鸿新材科技有限公司</Option>
</Select> </Select>
<Input
placeholder="请输入队伍名称"
// value={searchValue}
// onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}}
allowClear
/>
<Button <Button
type="primary" type="primary"
icon={<SearchOutlined />} icon={<SearchOutlined />}
@ -253,14 +271,14 @@ const Yjdw = () => {
> >
新增 新增
</Button> </Button>
<Button {/* <Button
danger danger
style={{width: 70, height: 30, borderRadius: 2, display: 'flex', alignItems: 'center', justifyContent: 'center'}} style={{width: 70, height: 30, borderRadius: 2, display: 'flex', alignItems: 'center', justifyContent: 'center'}}
icon={<img src={iconsc} alt="delete" style={{width: 14, height: 14, marginTop: -2}}/>} icon={<img src={iconsc} alt="delete" style={{width: 14, height: 14, marginTop: -2}}/>}
onClick={handleBatchDelete} onClick={handleBatchDelete}
> >
删除 删除
</Button> </Button> */}
</div> </div>
</div> </div>

@ -26,62 +26,56 @@ const Yjssd = () => {
{ {
key: '1', key: '1',
number: '01', number: '01',
unitName: '文登市兴文新材料有限公司', evacuationPointName: '疏散点一',
name: '国云海', evacuationPointAddress: '光明南街18号裕龙花园三区27号楼',
position: '生产班长', maxCapacity: 97,
mobile: '17898786567', personInCharge: '冯钰洁',
email: '1878967633@qq.com', remarks: '无',
dutyTime: '夜班',
}, },
{ {
key: '2', key: '2',
number: '02', number: '02',
unitName: '文登市兴文新材料有限公司', evacuationPointName: '疏散点二',
name: '陈志强', evacuationPointAddress: '怡馨家园达人街赏玩城一层98、99号',
position: '生产班长', maxCapacity: 96,
mobile: '17898786567', personInCharge: '周静',
email: '1878967633@qq.com', remarks: '备注二二',
dutyTime: '白班',
}, },
{ {
key: '3', key: '3',
number: '03', number: '03',
unitName: '合湾新材科技有限公司', evacuationPointName: '疏散点三',
name: '侯文涛', evacuationPointAddress: '新顺北大街',
position: '班长', maxCapacity: 91,
mobile: '17898786567', personInCharge: '何能',
email: '1878967633@qq.com', remarks: '备注三三',
dutyTime: '白班',
}, },
{ {
key: '4', key: '4',
number: '04', number: '04',
unitName: '山东万图高分子材料股份有限公司', evacuationPointName: '疏散点四',
name: '宋东', evacuationPointAddress: '红杉一品8号院底商',
position: '班长', maxCapacity: 59,
mobile: '17898786567', personInCharge: '冯新',
email: '1878967633@qq.com', remarks: '备注四四',
dutyTime: '夜班',
}, },
{ {
key: '5', key: '5',
number: '05', number: '05',
unitName: '合鸿新材科技有限公司', evacuationPointName: '疏散点五',
name: '王一声', evacuationPointAddress: '义宾街与站前北街交叉口北150米国泰谊宾商城F1层',
position: '班长', maxCapacity: 50,
mobile: '17898786567', personInCharge: '赵俊英',
email: '1878967633@qq.com', remarks: '备注五五',
dutyTime: '夜班',
}, },
{ {
key: '6', key: '6',
number: '06', number: '06',
unitName: '山东万图高分子材料股份有限公司', evacuationPointName: '疏散点六',
name: '赵小敏', evacuationPointAddress: '仁和站前北街4号',
position: '班长', maxCapacity: 48,
mobile: '17898786567', personInCharge: '赵中错',
email: '1878987633@qq.com', remarks: '备注六六',
dutyTime: '夜班',
}, },
]); ]);
@ -94,39 +88,33 @@ const Yjssd = () => {
width: 80, width: 80,
}, },
{ {
title: '单位名称', title: '疏散点名称',
dataIndex: 'unitName', dataIndex: 'evacuationPointName',
key: 'unitName', key: 'evacuationPointName',
width: 200, width: 150,
}, },
{ {
title: '姓名', title: '疏散点地址',
dataIndex: 'name', dataIndex: 'evacuationPointAddress',
key: 'name', key: 'evacuationPointAddress',
width: 100, width: 250,
},
{
title: '职务',
dataIndex: 'position',
key: 'position',
width: 120,
}, },
{ {
title: '手机号', title: '最大容纳人数(人)',
dataIndex: 'mobile', dataIndex: 'maxCapacity',
key: 'mobile', key: 'maxCapacity',
width: 130, width: 150,
}, },
{ {
title: '邮箱', title: '负责人',
dataIndex: 'email', dataIndex: 'personInCharge',
key: 'email', key: 'personInCharge',
width: 180, width: 120,
}, },
{ {
title: '值班时间', title: '备注',
dataIndex: 'dutyTime', dataIndex: 'remarks',
key: 'dutyTime', key: 'remarks',
width: 100, width: 100,
}, },
{ {
@ -191,14 +179,14 @@ const Yjssd = () => {
// 编辑处理 // 编辑处理
const handleEdit = (record) => { const handleEdit = (record) => {
message.info(`编辑 ${record.name} 的信息`); message.info(`编辑 ${record.evacuationPointName} 的信息`);
}; };
// 删除处理 // 删除处理
const handleDelete = (record) => { const handleDelete = (record) => {
Modal.confirm({ Modal.confirm({
title: '确认删除', title: '确认删除',
content: `确定要删除 ${record.name} 吗?`, content: `确定要删除 ${record.evacuationPointName} 吗?`,
onOk() { onOk() {
setDataSource(dataSource.filter(item => item.key !== record.key)); setDataSource(dataSource.filter(item => item.key !== record.key));
message.success('删除成功'); message.success('删除成功');
@ -222,18 +210,13 @@ const Yjssd = () => {
{/* 搜索和操作区域 */} {/* 搜索和操作区域 */}
<div className={styles.searchBar}> <div className={styles.searchBar}>
<div className={styles.searchLeft}> <div className={styles.searchLeft}>
<Select <Input
placeholder="请选择单位名称" placeholder="请输入疏散点名称"
value={searchValue} value={searchValue}
onChange={setSearchValue} onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}} style={{width: 180, height: 30, borderRadius: 2}}
allowClear allowClear
> />
<Option value="文登市兴文新材料有限公司">文登市兴文新材料有限公司</Option>
<Option value="合湾新材科技有限公司">合湾新材科技有限公司</Option>
<Option value="山东万图高分子材料股份有限公司">山东万图高分子材料股份有限公司</Option>
<Option value="合鸿新材科技有限公司">合鸿新材科技有限公司</Option>
</Select>
<Button <Button
type="primary" type="primary"
icon={<SearchOutlined />} icon={<SearchOutlined />}
@ -253,14 +236,6 @@ const Yjssd = () => {
> >
新增 新增
</Button> </Button>
<Button
danger
style={{width: 70, height: 30, borderRadius: 2, display: 'flex', alignItems: 'center', justifyContent: 'center'}}
icon={<img src={iconsc} alt="delete" style={{width: 14, height: 14, marginTop: -2}}/>}
onClick={handleBatchDelete}
>
删除
</Button>
</div> </div>
</div> </div>

@ -27,61 +27,79 @@ const Yjwz = () => {
key: '1', key: '1',
number: '01', number: '01',
unitName: '文登市兴文新材料有限公司', unitName: '文登市兴文新材料有限公司',
name: '国云海', materialCategory: '应急救援装备',
position: '生产班长', materialName: '正压式空气呼吸器',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878967633@qq.com', unit: '北粮农业股份有限公司',
dutyTime: '夜班', quantity: 2,
storageLocation: '一楼监控室',
name: '李世敏',
contactNumber: '18353452884',
}, },
{ {
key: '2', key: '2',
number: '02', number: '02',
unitName: '文登市兴文新材料有限公司', unitName: '文登市兴文新材料有限公司',
name: '陈志强', materialCategory: '应急救援装备',
position: '生产班长', materialName: '过滤式防毒面具',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878967633@qq.com', unit: '北京新态互动科贸有限公司',
dutyTime: '白班', quantity: 7,
storageLocation: '一楼监控室',
name: '赵小瑞',
contactNumber: '18847168496',
}, },
{ {
key: '3', key: '3',
number: '03', number: '03',
unitName: '合湾新材科技有限公司', unitName: '合鸿新材科技有限公司',
name: '侯文涛', materialCategory: '应急救援装备',
position: '班长', materialName: '连体防护服',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878967633@qq.com', unit: '北京达斯可恩食品有限公司',
dutyTime: '白班', quantity: 8,
storageLocation: '一楼监控室',
name: '钱珈艺',
contactNumber: '18437766264',
}, },
{ {
key: '4', key: '4',
number: '04', number: '04',
unitName: '山东万图高分子材料股份有限公司', unitName: '山东万图高分子材料股份有限公司',
name: '宋东', materialCategory: '个人防护装备',
position: '班长', materialName: '防爆背心',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878967633@qq.com', unit: '腾大科技发展(北京)有限公司',
dutyTime: '夜班', quantity: 23,
storageLocation: '一楼监控室',
name: '赵雾瑕',
contactNumber: '15014254724',
}, },
{ {
key: '5', key: '5',
number: '05', number: '05',
unitName: '合鸿新材科技有限公司', unitName: '合鸿新材科技有限公司',
name: '王一声', materialCategory: '应急物资',
position: '班长', materialName: '逃生面具',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878967633@qq.com', unit: '北京长友物业管理有限公司',
dutyTime: '夜班', quantity: 12,
storageLocation: '一楼监控室',
name: '李彤运',
contactNumber: '15151314652',
}, },
{ {
key: '6', key: '6',
number: '06', number: '06',
unitName: '山东万图高分子材料股份有限公司', unitName: '山东万图高分子材料股份有限公司',
name: '赵小敏', materialCategory: '应急救援装备',
position: '班长', materialName: '移动式防爆应急灯',
mobile: '17898786567', specification: 'DEV2024001',
email: '1878987633@qq.com', unit: '北京金益邦科技有限公司',
dutyTime: '夜班', quantity: 9,
storageLocation: '一楼监控室',
name: '钱唯',
contactNumber: '13322876802',
}, },
]); ]);
@ -100,35 +118,53 @@ const Yjwz = () => {
width: 200, width: 200,
}, },
{ {
title: '姓名', title: '物资类别',
dataIndex: 'name', dataIndex: 'materialCategory',
key: 'name', key: 'materialCategory',
width: 100, width: 120,
}, },
{ {
title: '职务', title: '物资名称',
dataIndex: 'position', dataIndex: 'materialName',
key: 'position', key: 'materialName',
width: 150,
},
{
title: '规格型号',
dataIndex: 'specification',
key: 'specification',
width: 120, width: 120,
}, },
{ {
title: '手机号', title: '单位',
dataIndex: 'mobile', dataIndex: 'unit',
key: 'mobile', key: 'unit',
width: 130, width: 150,
}, },
{ {
title: '邮箱', title: '数量',
dataIndex: 'email', dataIndex: 'quantity',
key: 'email', key: 'quantity',
width: 180, width: 80,
}, },
{ {
title: '值班时间', title: '存放地点',
dataIndex: 'dutyTime', dataIndex: 'storageLocation',
key: 'dutyTime', key: 'storageLocation',
width: 120,
},
{
title: '姓名',
dataIndex: 'name',
key: 'name',
width: 100, width: 100,
}, },
{
title: '联系电话',
dataIndex: 'contactNumber',
key: 'contactNumber',
width: 130,
},
{ {
title: '操作', title: '操作',
key: 'action', key: 'action',
@ -230,10 +266,17 @@ const Yjwz = () => {
allowClear allowClear
> >
<Option value="文登市兴文新材料有限公司">文登市兴文新材料有限公司</Option> <Option value="文登市兴文新材料有限公司">文登市兴文新材料有限公司</Option>
<Option value="合湾新材科技有限公司">合湾新材科技有限公司</Option>
<Option value="山东万图高分子材料股份有限公司">山东万图高分子材料股份有限公司</Option>
<Option value="合鸿新材科技有限公司">合鸿新材科技有限公司</Option> <Option value="合鸿新材科技有限公司">合鸿新材科技有限公司</Option>
<Option value="山东万图高分子材料股份有限公司">山东万图高分子材料股份有限公司</Option>
</Select> </Select>
<Input
placeholder="请输入物资名称"
// value={searchValue}
// onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}}
allowClear
/>
<Button <Button
type="primary" type="primary"
icon={<SearchOutlined />} icon={<SearchOutlined />}

@ -26,62 +26,68 @@ const Yjzj = () => {
{ {
key: '1', key: '1',
number: '01', number: '01',
unitName: '文登市兴文新材料有限公司', expertName: '李世敏',
name: '国云海', expertType: '应急处置专家',
position: '生产班长', expertPhone: '18584691667',
mobile: '17898786567', expertSpecialty: '应急处置',
email: '1878967633@qq.com', workUnit: '珠海唯他可可饮料有限公司',
dutyTime: '夜班', workUnitAddress: '光明南街18号裕龙花园三区27号楼',
remarks: '备注一',
}, },
{ {
key: '2', key: '2',
number: '02', number: '02',
unitName: '文登市兴文新材料有限公司', expertName: '赵小瑞',
name: '陈志强', expertType: '应急救援专家',
position: '生产班长', expertPhone: '17691586686',
mobile: '17898786567', expertSpecialty: '应急救援',
email: '1878967633@qq.com', workUnit: '深圳刷宝科技有限公司北京分公司',
dutyTime: '白班', workUnitAddress: '怡馨家园达人街赏玩城一层98、99号',
remarks: '备注二二',
}, },
{ {
key: '3', key: '3',
number: '03', number: '03',
unitName: '合湾新材科技有限公司', expertName: '钱珈艺',
name: '侯文涛', expertType: '应急处置专家',
position: '班长', expertPhone: '1373975741',
mobile: '17898786567', expertSpecialty: '应急救援',
email: '1878967633@qq.com', workUnit: '深圳市浩天投资有限公司',
dutyTime: '白班', workUnitAddress: '新顺北大街',
remarks: '备注三三',
}, },
{ {
key: '4', key: '4',
number: '04', number: '04',
unitName: '山东万图高分子材料股份有限公司', expertName: '赵雾瑕',
name: '宋东', expertType: '应急处置专家',
position: '班长', expertPhone: '15741703130',
mobile: '17898786567', expertSpecialty: '应急救援',
email: '1878967633@qq.com', workUnit: '北京永庄文化传媒有限公司',
dutyTime: '夜班', workUnitAddress: '红杉一品8号院底商',
remarks: '备注四四',
}, },
{ {
key: '5', key: '5',
number: '05', number: '05',
unitName: '合鸿新材科技有限公司', expertName: '李彤运',
name: '王一声', expertType: '应急救援专家',
position: '班长', expertPhone: '13034177234',
mobile: '17898786567', expertSpecialty: '应急处置',
email: '1878967633@qq.com', workUnit: '北京潭门国际餐饮管理有限公司',
dutyTime: '夜班', workUnitAddress: '义宾街与站前北街交叉口北150米国泰谊宾商城F1层',
remarks: '备注五五',
}, },
{ {
key: '6', key: '6',
number: '06', number: '06',
unitName: '山东万图高分子材料股份有限公司', expertName: '钱唯',
name: '赵小敏', expertType: '应急救援专家',
position: '班长', expertPhone: '13882127041',
mobile: '17898786567', expertSpecialty: '应急处置',
email: '1878987633@qq.com', workUnit: '融成财富(北京)投资有限公司',
dutyTime: '夜班', workUnitAddress: '仁和站前北街4号',
remarks: '备注六六',
}, },
]); ]);
@ -94,40 +100,46 @@ const Yjzj = () => {
width: 80, width: 80,
}, },
{ {
title: '单位名称', title: '专家姓名',
dataIndex: 'unitName', dataIndex: 'expertName',
key: 'unitName', key: 'expertName',
width: 200, width: 120,
}, },
{ {
title: '姓名', title: '专家类型',
dataIndex: 'name', dataIndex: 'expertType',
key: 'name', key: 'expertType',
width: 100, width: 140,
}, },
{ {
title: '职务', title: '专家电话',
dataIndex: 'position', dataIndex: 'expertPhone',
key: 'position', key: 'expertPhone',
width: 130,
},
{
title: '专家专长',
dataIndex: 'expertSpecialty',
key: 'expertSpecialty',
width: 120, width: 120,
}, },
{ {
title: '手机号', title: '工作单位',
dataIndex: 'mobile', dataIndex: 'workUnit',
key: 'mobile', key: 'workUnit',
width: 130, width: 200,
}, },
{ {
title: '邮箱', title: '工作单位地址',
dataIndex: 'email', dataIndex: 'workUnitAddress',
key: 'email', key: 'workUnitAddress',
width: 180, width: 250,
}, },
{ {
title: '值班时间', title: '备注',
dataIndex: 'dutyTime', dataIndex: 'remarks',
key: 'dutyTime', key: 'remarks',
width: 100, width: 120,
}, },
{ {
title: '操作', title: '操作',
@ -222,18 +234,12 @@ const Yjzj = () => {
{/* 搜索和操作区域 */} {/* 搜索和操作区域 */}
<div className={styles.searchBar}> <div className={styles.searchBar}>
<div className={styles.searchLeft}> <div className={styles.searchLeft}>
<Select <Input
placeholder="请选择单位名称" placeholder="请输入专家姓名"
value={searchValue} value={searchValue}
onChange={setSearchValue} onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}} style={{width: 180, height: 30, borderRadius: 2}}
allowClear allowClear/>
>
<Option value="文登市兴文新材料有限公司">文登市兴文新材料有限公司</Option>
<Option value="合湾新材科技有限公司">合湾新材科技有限公司</Option>
<Option value="山东万图高分子材料股份有限公司">山东万图高分子材料股份有限公司</Option>
<Option value="合鸿新材科技有限公司">合鸿新材科技有限公司</Option>
</Select>
<Button <Button
type="primary" type="primary"
icon={<SearchOutlined />} icon={<SearchOutlined />}
@ -253,14 +259,6 @@ const Yjzj = () => {
> >
新增 新增
</Button> </Button>
<Button
danger
style={{width: 70, height: 30, borderRadius: 2, display: 'flex', alignItems: 'center', justifyContent: 'center'}}
icon={<img src={iconsc} alt="delete" style={{width: 14, height: 14, marginTop: -2}}/>}
onClick={handleBatchDelete}
>
删除
</Button>
</div> </div>
</div> </div>

Loading…
Cancel
Save