import React, { useState } from 'react'; import { Input, Button, Select, message } from 'antd'; import { SearchOutlined, PlusOutlined } from '@ant-design/icons'; import StandardTable from '@/components/StandardTable'; import styles from './czjy.less'; import iconsc from '@/assets/yjzygl/iconsc.svg'; const { Option } = Select; const Czjy = () => { const [loading, setLoading] = useState(false); const [selectedRowKeys, setSelectedRowKeys] = useState([]); const [searchValue, setSearchValue] = useState(''); const [pagination, setPagination] = useState({ current: 1, pageSize: 10, total: 0, showSizeChanger: true, showQuickJumper: true, showTotal: (total, range) => `共${total}条`, }); // 数据源 const [dataSource, setDataSource] = useState([]); // 表格列配置 const columns = [ { title: '编号', dataIndex: 'number', key: 'number', width: 80, }, { title: '操作', key: 'action', width: 120, render: (text, record) => (