用于对用户的操作结果或者异常状态做反馈。
<template>
<el-row>
<el-col :sm="12" :lg="6">
<el-result icon="success" title="成功提示" subTitle="请根据提示进行操作">
<template #extra>
<el-button type="primary" size="medium">返回</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result icon="warning" title="警告提示" subTitle="请根据提示进行操作">
<template #extra>
<el-button type="primary" size="medium">返回</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result icon="error" title="错误提示" subTitle="请根据提示进行操作">
<template #extra>
<el-button type="primary" size="medium">返回</el-button>
</template>
</el-result>
</el-col>
<el-col :sm="12" :lg="6">
<el-result icon="info" title="信息提示" subTitle="请根据提示进行操作">
<template #extra>
<el-button type="primary" size="medium">返回</el-button>
</template>
</el-result>
</el-col>
</el-row>
</template>
<template>
<el-result title="404" subTitle="抱歉,请求错误">
<template #icon>
<el-image
src="https://img.bianchengxue.com/upload11/2303/105043460.png" rel="external nofollow"
></el-image>
</template>
<template #extra>
<el-button type="primary" size="medium">返回</el-button>
</template>
</el-result>
</template>
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
title | 标题 | string | — | — |
sub-title | 二级标题 | string | — | — |
icon | 图标类型 | string | success / warning / info / error | info |
Name | 说明 |
---|---|
icon | 自定义图标 |
title | 自定义标题 |
subTitle | 自定义二级标题 |
extra | 自定义底部额外区域 |
Tabs 标签页分隔内容上有关联但属于不同类别的数据集合。基础用法基础的、简洁的标签页。用户管理配置管理角色管理定时任务补偿...
Popconfirm 气泡确认框点击元素,弹出气泡确认框。基础用法Popconfirm 的属性与 Popover 很类似,因此对于重复属性,请参考 Popo...
在上篇文章中,我们已经为大家介绍了单个按钮样式的设置,详情请参考:Bootstrap4按钮但是在Bootstrap4中,除了单个按钮外,还允...
在本章中,我们将学习在Bootstrap4中如何创建表单。在Bootstrap4中,我们可以通过一些简单的HTML标签和扩展的类即可创建出不同样...
在ECharts图表中,通过hoverAnimation来控制是否开启 hover 在图形上的提示动画效果。默认为 false,即不开启,如若需要开启,请...