import React, { useRef } from 'react'; import { PageContainer } from '@ant-design/pro-layout'; import { ProTable } from '@ant-design/pro-components'; import type { ProColumns, ActionType } from '@ant-design/pro-components'; import { Button, Popconfirm, Spin, Tag } from 'antd'; import UpsertSmsChannelModalForm from './component/UpsertSmsChannelModalForm'; import { PlusOutlined } from '@ant-design/icons'; import { pageQuerySmsChannel } from '@/services/op-admin/message/sms'; /** * @author bianlanzhou * @since 2024-11-07 * @desc */ const SmsChannelTable: React.FC = () => { /** 引用 */ const actionRef = useRef(); /** 列定义 */ const columns: ProColumns[] = [ { title: '序号', dataIndex: 'index', valueType: 'indexBorder', width: 48, }, { title: '通道名称', dataIndex: 'channelName', }, { title: '短信平台名称', dataIndex: 'platformName', }, { title: '创建人', dataIndex: 'createUsername', search: false, }, { title: '创建时间', dataIndex: 'gmtCreate', search: false, }, { title: '修改人', dataIndex: 'modifyUsername', search: false, }, { title: '修改时间', dataIndex: 'gmtModify', search: false, }, { title: '状态', dataIndex: 'status', search: false, render: (_, record) => { if (record.status === 'draft') { return [草稿] } if (record.status === 'ok') { return [已启用] } if (record.status === 'draft') { return [已停用] } if (record.status === 'delete') { return [已删除] } return [未知] } }, { title: '操作', valueType: 'option', width: '10%', render: (_, record) => [ 编辑 } callback={() => { actionRef.current?.reload() }} data={record} /> , { }} > 删除 , ], }, ] return ( columns={columns} cardBordered actionRef={actionRef} request={pageQuerySmsChannel} editable={{ type: 'multiple', }} rowKey="id" search={{ labelWidth: 'auto', }} pagination={{ pageSize: 10, }} toolBarRender={() => [ }> 创建短信通道 } callback={() => { actionRef.current?.reload(); }} />, ]} headerTitle="短信通道列表" /> ); } export default SmsChannelTable;