import React from 'react'; import XBaseLayout, { XBaseLayoutProps } from "../base/XBaseLayout"; import { Card, Result } from "antd"; export interface XCardProps extends XBaseLayoutProps { /** * 卡片组件的标题 */ title?: string | React.ReactNode; } /** * 相当于标准的
模块,可以设置标题,样式信息 * @name 卡片布局 * @groupName 网格 */ export default class XCard extends XBaseLayout { static ComponentName: string; static Result: typeof Result; static Card: typeof Card; static defaultProps: { title: string; more: string; hasBox: boolean; lazyChildren: boolean; styleType: string; showBorder: any; overflow: string; boxStyle: {}; width: string; height: string; visible: boolean; grid: number[]; gridSpan: number[]; parent: string; pureRender: boolean; dataSourceUrl: string; filterData: {}; mustHasFilter: boolean; }; constructor(props: XCardProps); renderLayout(): React.JSX.Element; }