UNPKG

@51yzone/pc-components

Version:

An enterprise-class UI design language and React-based implementation

27 lines (26 loc) 655 B
/** * 关键字:日志操作表格 * 新增人:徐友万 * 完善中(暂时不可配置) */ import React from 'react'; import { ProColumns } from '@ant-design/pro-table'; interface IProps { columns?: ProColumns<StatusLogListItem>[]; dataIndexes?: string[]; rowKey: string; request: any; prefixCls?: string; className?: string; [propName: string]: any; } interface StatusLogListItem { handleTypeName: string; handlerName: string; handleOpName: string; gmtCreatedStr: string; handleContent: string; [propName: string]: any; } declare const LogTable: React.FC<IProps>; export default LogTable;