amis2/examples/components/Page/Error.jsx

28 lines
655 B
React
Raw Normal View History

2019-04-30 11:11:25 +08:00
export default {
2019-11-07 10:41:14 +08:00
type: 'page',
title: '标题',
remark: '提示 Tip',
body: [
`
2019-04-30 11:11:25 +08:00
<p>\`initApi\` 拉取失败时,页面内容区会显示对应的错误信息。</p>
<p>其他提示示例</p>
`,
2019-11-07 10:41:14 +08:00
{
type: 'alert',
level: 'success',
body: `温馨提示:对页面功能的提示说明,绿色为正向类的消息提示`
},
2019-04-30 11:11:25 +08:00
2019-11-07 10:41:14 +08:00
{
type: 'alert',
level: 'warning',
body: `您的私有网络已达到配额,如需更多私有网络,可以通过<a>工单</a>申请`
}
],
aside: '边栏',
toolbar: '工具栏',
initApi: '/api/mock2/page/initDataError'
2023-11-10 15:19:06 +08:00
}