2024-12-01 11:56:54 +00:00
|
|
|
|
import { IBaseProps } from '../_util/base';
|
2024-11-10 07:01:22 +00:00
|
|
|
|
/**
|
|
|
|
|
* @description 结果页,用于展示用户操作后的信息反馈。
|
|
|
|
|
*/
|
|
|
|
|
export interface IResultProps extends IBaseProps {
|
2024-12-01 11:56:54 +00:00
|
|
|
|
/**
|
|
|
|
|
* @description 内置类型 success=成功 error=错误/危险 info=信息提示 wait=等待处理
|
|
|
|
|
*/
|
|
|
|
|
type: 'success' | 'error' | 'info' | 'warning' | 'wait';
|
|
|
|
|
/**
|
|
|
|
|
* @description 自定义图片,如果配置了 type, 则不生效
|
|
|
|
|
*/
|
|
|
|
|
image: string;
|
|
|
|
|
/**
|
|
|
|
|
* @description 主文案
|
|
|
|
|
*/
|
|
|
|
|
title: string;
|
|
|
|
|
/**
|
|
|
|
|
* @description 副文案
|
|
|
|
|
*/
|
|
|
|
|
message: string;
|
2024-11-10 07:01:22 +00:00
|
|
|
|
}
|
|
|
|
|
export declare const ResultDefaultProps: Partial<IResultProps>;
|