You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

262 lines
8.0 KiB
JavaScript

import React, { useState, useEffect } from 'react';
import { Input, Button, Select, message, Modal } from 'antd';
import { SearchOutlined, PlusOutlined, DeleteOutlined, EditOutlined } from '@ant-design/icons';
import StandardTable from '@/components/StandardTable';
import styles from './yjssd.less';
import iconsc from '@/assets/yjzygl/iconsc.svg';
const { Option } = Select;
const Yjssd = () => {
const [loading, setLoading] = useState(false);
const [selectedRowKeys, setSelectedRowKeys] = useState([]);
const [searchValue, setSearchValue] = useState('');
const [pagination, setPagination] = useState({
current: 1,
pageSize: 10,
total: 48,
showSizeChanger: true,
showQuickJumper: true,
showTotal: (total, range) => `${total}`,
});
// 模拟数据
const [dataSource, setDataSource] = useState([
{
key: '1',
number: '01',
evacuationPointName: '疏散点一',
evacuationPointAddress: '光明南街18号裕龙花园三区27号楼',
maxCapacity: 97,
personInCharge: '冯钰洁',
remarks: '无',
},
{
key: '2',
number: '02',
evacuationPointName: '疏散点二',
evacuationPointAddress: '怡馨家园达人街赏玩城一层98、99号',
maxCapacity: 96,
personInCharge: '周静',
remarks: '备注二二',
},
{
key: '3',
number: '03',
evacuationPointName: '疏散点三',
evacuationPointAddress: '新顺北大街',
maxCapacity: 91,
personInCharge: '何能',
remarks: '备注三三',
},
{
key: '4',
number: '04',
evacuationPointName: '疏散点四',
evacuationPointAddress: '红杉一品8号院底商',
maxCapacity: 59,
personInCharge: '冯新',
remarks: '备注四四',
},
{
key: '5',
number: '05',
evacuationPointName: '疏散点五',
evacuationPointAddress: '义宾街与站前北街交叉口北150米国泰谊宾商城F1层',
maxCapacity: 50,
personInCharge: '赵俊英',
remarks: '备注五五',
},
{
key: '6',
number: '06',
evacuationPointName: '疏散点六',
evacuationPointAddress: '仁和站前北街4号',
maxCapacity: 48,
personInCharge: '赵中错',
remarks: '备注六六',
},
]);
// 表格列配置
const columns = [
{
title: '编号',
dataIndex: 'number',
key: 'number',
width: 80,
},
{
title: '疏散点名称',
dataIndex: 'evacuationPointName',
key: 'evacuationPointName',
width: 150,
},
{
title: '疏散点地址',
dataIndex: 'evacuationPointAddress',
key: 'evacuationPointAddress',
width: 250,
},
{
title: '最大容纳人数(人)',
dataIndex: 'maxCapacity',
key: 'maxCapacity',
width: 150,
},
{
title: '负责人',
dataIndex: 'personInCharge',
key: 'personInCharge',
width: 120,
},
{
title: '备注',
dataIndex: 'remarks',
key: 'remarks',
width: 100,
},
{
title: '操作',
key: 'action',
width: 120,
render: (text, record) => (
<div className={styles.actionButtons}>
<Button
type="link"
size="small"
// icon={<EditOutlined />}
onClick={() => handleEdit(record)}
>
修改
</Button>
<Button
type="link"
size="small"
danger
// icon={<DeleteOutlined />}
onClick={() => handleDelete(record)}
>
删除
</Button>
</div>
),
},
];
// 搜索处理
const handleSearch = () => {
setLoading(true);
// 模拟搜索请求
setTimeout(() => {
setLoading(false);
message.success('查询完成');
}, 1000);
};
// 新增处理
const handleAdd = () => {
message.info('新增功能待实现');
};
// 批量删除处理
const handleBatchDelete = () => {
if (selectedRowKeys.length === 0) {
message.warning('请选择要删除的数据');
return;
}
Modal.confirm({
title: '确认删除',
content: `确定要删除选中的 ${selectedRowKeys.length} 条数据吗?`,
onOk() {
setDataSource(dataSource.filter(item => !selectedRowKeys.includes(item.key)));
setSelectedRowKeys([]);
message.success('删除成功');
},
});
};
// 编辑处理
const handleEdit = (record) => {
message.info(`编辑 ${record.evacuationPointName} 的信息`);
};
// 删除处理
const handleDelete = (record) => {
Modal.confirm({
title: '确认删除',
content: `确定要删除 ${record.evacuationPointName} 吗?`,
onOk() {
setDataSource(dataSource.filter(item => item.key !== record.key));
message.success('删除成功');
},
});
};
// 分页处理
const handleTableChange = (pagination) => {
setPagination(pagination);
};
return (
<div className={styles.container}>
{/* 页面标题 */}
<div className={styles.header}>
<div className={styles.titleBar}></div>
<h2 className={styles.title}>应急疏散点</h2>
</div>
{/* 搜索和操作区域 */}
<div className={styles.searchBar}>
<div className={styles.searchLeft}>
<Input
placeholder="请输入疏散点名称"
value={searchValue}
onChange={setSearchValue}
style={{width: 180, height: 30, borderRadius: 2}}
allowClear
/>
<Button
type="primary"
icon={<SearchOutlined />}
onClick={handleSearch}
loading={loading}
className={styles.customButton}
>
查询
</Button>
</div>
<div className={styles.searchRight}>
<Button
type="primary"
icon={<PlusOutlined />}
onClick={handleAdd}
className={styles.customButton}
>
新增
</Button>
</div>
</div>
{/* 数据表格 */}
<div className={styles.tableContainer}>
<StandardTable
columns={columns}
data={{
list: dataSource,
pagination: pagination
}}
rowKey="key"
selectedRows={selectedRowKeys}
onSelectRow={setSelectedRowKeys}
onChange={handleTableChange}
loading={loading}
/>
</div>
</div>
);
};
export default Yjssd;