mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
6.9 KiB
Executable File
6.9 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Alert 提示 | 0 | ⚙ 组件 | Alert 提示 | 27 |
用来做文字特殊提示,分为四类:提示类、成功类、警告类和危险类。
基本使用
level
属性支持 4 种预设样式:info
, success
, warning
, danger
。
[
{
"type": "alert",
"body": "提示类文案",
"level": "info",
"className": "mb-1"
},
{
"type": "alert",
"title": "提示类标题",
"body": "提示类文案",
"level": "info",
"className": "mb-3"
},
{
"type": "alert",
"body": "成功类文案",
"level": "success",
"className": "mb-1"
},
{
"type": "alert",
"title": "成功类标题",
"body": "成功类文案",
"level": "success",
"className": "mb-3"
},
{
"type": "alert",
"body": "警告类文案",
"level": "warning",
"className": "mb-1"
},
{
"type": "alert",
"title": "警告类标题",
"body": "警告类文案",
"level": "warning",
"className": "mb-3"
},
{
"type": "alert",
"body": "危险类文案",
"level": "danger",
"className": "mb-1"
},
{
"type": "alert",
"title": "危险类标题",
"body": "危险类文案",
"level": "danger",
},
]
图标
配置"showIcon": true
后展示图标让信息更加醒目。可以通过icon
属性自定义设置 icon 内容,如果icon
属性为空,则根据level
值添加默认 icon。
[
{
"type": "alert",
"body": "提示类文案",
"level": "info",
"showIcon": true,
"className": "mb-1"
},
{
"type": "alert",
"title": "提示类标题",
"body": "提示类文案",
"level": "info",
"showIcon": true,
"className": "mb-3"
},
{
"type": "alert",
"body": "成功类文案",
"level": "success",
"showIcon": true,
"className": "mb-1"
},
{
"type": "alert",
"title": "成功类标题",
"body": "成功类文案",
"level": "success",
"showIcon": true,
"className": "mb-3"
},
{
"type": "alert",
"body": "警告类文案",
"level": "warning",
"showIcon": true,
"className": "mb-1"
},
{
"type": "alert",
"title": "警告类标题",
"body": "警告类文案",
"level": "warning",
"showIcon": true,
"className": "mb-3"
},
{
"type": "alert",
"body": "危险类文案",
"level": "danger",
"showIcon": true,
"className": "mb-1"
},
{
"type": "alert",
"title": "危险类标题",
"body": "危险类文案",
"level": "danger",
"showIcon": true,
"className": "mb-3"
},
{
"type": "alert",
"body": "自定义ICON文案",
"showIcon": true,
"icon": "info-circle",
"className": "mb-1"
},
{
"type": "alert",
"title": "自定义ICON标题",
"body": "自定义ICON文案",
"showIcon": true,
"icon": "fa fa-list"
}
]
level 支持表达式
1.6.4 及以上版本
修改下面例子的 status 值为 2 就能看到变化
{
"type": "page",
"data": {
"status": 1
},
"body": [
{
"type": "alert",
"level": "${IFS(status===1, 'danger', status===2, 'warning')}",
"body": "这是内容区"
}
]
}
同时 icon 和 showIcon 也都支持表达式
显示关闭按钮
配置"showCloseButton": true
实现显示关闭按钮。
[
{
"type": "alert",
"body": "显示关闭按钮的提示",
"level": "info",
"showCloseButton": true,
"showIcon": true,
"className": "mb-2"
},
{
"type": "alert",
"title": "可关闭提示",
"body": "显示关闭按钮的提示",
"level": "success",
"showCloseButton": true,
"showIcon": true
}
]
操作区域
3.6.0
及以上版本
配置actions
属性,可以添加操作区域。
[
{
"type": "alert",
"level": "success",
"className": "mb-3",
"showIcon": true,
"showCloseButton": true,
"title": "标题",
"body": "创建成功",
"actions": [
{
"type": "button",
"label": "查看详情",
"size": "xs",
"level": "link",
"style": {
"position": "relative",
"top": "25px",
"left": "30px"
}
}
]
},
{
"type": "alert",
"level": "info",
"showIcon": true,
"showCloseButton": true,
"body": "创建成功",
"actions": {
"type": "flex",
"justify": "flex-start",
"alignItems": "flex-start",
"direction": "column",
"style": {"padding": "6px"},
"items": [
{
"type": "button",
"label": "详情",
"size": "xs",
"level": "primary",
"style": {
"marginBottom": "5px"
}
},
{
"type": "button",
"label": "关闭",
"size": "xs",
"level": "danger"
}
]
}
}
]
属性表
属性名 | 类型 | 默认值 | 说明 | 版本 |
---|---|---|---|---|
type | string |
"alert" |
指定为 alert 渲染器 | |
title | string |
alert标题 | ||
className | string |
外层 Dom 的类名 | ||
level | string |
info |
级别,可以是:info 、success 、warning 或者 danger |
|
body | SchemaNode[] | SchemaNode |
显示内容 | ||
showCloseButton | boolean |
false |
是否显示关闭按钮 | |
closeButtonClassName | string |
关闭按钮的 CSS 类名 | ||
showIcon | boolean |
false |
是否显示 icon | |
icon | string |
自定义 icon | ||
iconClassName | string |
icon 的 CSS 类名 | ||
actions | SchemaNode[] | SchemaNode |
操作区域 | 3.6.0 |