import { Badge, Modal } from 'antd'; import { observer } from '@formily/react'; import { service, state } from '..'; import ProTable, { ActionType, ProColumns } from '@jetlinks/pro-table'; import SearchComponent from '@/components/SearchComponent'; import { useLocation } from 'umi'; import { InfoCircleOutlined } from '@ant-design/icons'; import { useRef, useState } from 'react'; const Log = observer(() => { const location = useLocation<{ id: string }>(); const id = (location as any).query?.id; const columns: ProColumns[] = [ { dataIndex: 'id', title: 'id', width: 200, }, { dataIndex: 'notifyTime', title: '发送时间', valueType: 'dateTime', }, { dataIndex: 'state', title: '状态', renderText: (text: { value: string; text: string }, record) => { return ( <> {text.value !== 'success' && ( { Modal.info({ title: '错误信息', width: '30vw', content: (
{record.errorStack}
), onOk() {}, }); }} >
)} ); }, }, { dataIndex: 'action', title: '操作', render: (text, record) => [ { Modal.info({ title: '详情信息', width: '30vw', content: (
{JSON.stringify(record.context)}
), onOk() {}, }); }} >
, ], }, ]; const [param, setParam] = useState(); const actionRef = useRef(); return ( (state.log = false)} title="通知记录" width={'50vw'} visible={state.log && !!state.current?.id} > { actionRef.current?.reset?.(); setParam(data); }} enableSave={false} /> search={false} pagination={{ pageSize: 5, }} params={param} columns={columns} request={async (params) => service.getHistoryLog(state.current?.id || '', params)} /> ); }); export default Log;