# 警示提示
# 引入
import { H3Alert } from '@lateinos/awesome-ui';
export default {
components: {
H3Alert,
}
}
# 基础alert
<div class="h3-margin-top-xl">
<h3-alert message="系统错误,请稍后重试。"
type="error"
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert message="你好!欢迎使用金融云2.0专业版,你可以根据自身需求添加业务模块。"
type="info"
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert message="恭喜!你所提交的信息已经审核通过,如有问题请联系客服。"
type="success"
closable
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert message="系统将于 15 : 00 - 17 : 00 进行升级,请及时保存你的资料!"
type="warning"
closable
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert message="文本内容折行效果文本内容折行效果文本内容折行效果文本内容折行效果文本内容折行效果文本内容折行效果"
type="warning"
closable
showIcon
/>
</div>
# 含标题和描述的alert
<div class="h3-margin-top-xl">
<h3-alert
message="出错了!"
description="你所提交的信息已经审核失败,可以进入个人信箱查看原因,如有疑问,请联系客服人员。"
type="error"
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert
message="帮助信息"
description="你好,由于你的良好信用,我们决定赠送你三个月产品会员,欲了解会员特权与活动请进首页会员专区查看。"
type="info"
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert
message="已成功!"
description="你所提交的信息已经审核通过,请及时跟进申请状况。如有问题,请联系审核人员或在线客服。"
type="success"
showIcon
/>
</div>
<div class="h3-margin-top-xl">
<h3-alert
message="请注意!"
description="你的账户会员使用权限将在3天后到期,请及时跟进申请状况。如有问题,请联系审核人员。"
type="warning"
closable
showIcon
/>
</div>