amis/docs/components/wizard.md

95 lines
7.9 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: Wizard 向导
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: ⚙ 组件
menuName: Wizard 向导
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 73
---
2020-07-29 16:20:21 +08:00
2020-07-28 10:03:53 +08:00
表单向导,能够配置多个步骤引导用户一步一步完成表单提交。
## 基本使用
```schema:height="400" scope="body"
{
"type": "wizard",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm?waitSeconds=2",
"mode": "vertical",
"steps": [
{
"title": "第一步",
"controls": [
{
"name": "website",
"label": "网址",
"type": "url",
"required": true
},
{
"name": "email",
"label": "邮箱",
"type": "email",
"required": true
}
]
},
{
"title": "Step 2",
"controls": [
{
"name": "email2",
"label": "邮箱",
"type": "email",
"required": true
}
]
},
{
"title": "Step 3",
"controls": [
"这是最后一步了"
]
}
]
}
```
## 属性表
2020-07-29 16:20:21 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| ------------------- | -------------------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| type | `string` | `"wizard"` | 指定为 `Wizard` 组件 |
| mode | `string` | `"horizontal"` | 展示模式,选择:`horizontal` 或者 `vertical` |
| api | [API](../types/api) | | 最后一步保存的接口。 |
| initApi | [API](../types/api) | | 初始化数据接口 |
| initFetch | [API](../types/api) | | 初始是否拉取数据。 |
| initFetchOn | [表达式](../concepts/expression) | | 初始是否拉取数据,通过表达式来配置 |
| actionPrevLabel | `string` | `上一步` | 上一步按钮文本 |
| actionNextLabel | `string` | `下一步` | 下一步按钮文本 |
| actionNextSaveLabel | `string` | `保存并下一步` | 保存并下一步按钮文本 |
| actionFinishLabel | `string` | `完成` | 完成按钮文本 |
| className | `string` | | 外层 CSS 类名 |
| actionClassName | `string` | `btn-sm btn-default` | 按钮 CSS 类名 |
| reload | `string` | | 操作完后刷新目标对象。请填写目标组件设置的 name 值,如果填写为 `window` 则让当前页面整体刷新。 |
| redirect | [模板](../concepts/template) | `3000` | 操作完后跳转。 |
| target | `string` | `false` | 可以把数据提交给别的组件而不是自己保存。请填写目标组件设置的 name 值,如果填写为 `window` 则把数据同步到地址栏上,同时依赖这些数据的组件会自动重新刷新。 |
| steps | Array<[step](#step)> | | 数组,配置步骤信息 |
2020-07-28 10:03:53 +08:00
### step
| 属性名 | 类型 | 默认值 | 说明 |
| ----------------- | ---------------------------------- | ------ | --------------------------------------------------------------------------------------------- |
| title | `string` | | 步骤标题 |
| mode | `string` | | 展示默认,跟 [Form](./Form/Form.md) 中的模式一样,选择: `normal`、`horizontal`或者`inline`。 |
| horizontal | `Object` | | 当为水平模式时,用来控制左右占比 |
| horizontal.label | `number` | | 左边 label 的宽度占比 |
| horizontal.right | `number` | | 右边控制器的宽度占比。 |
| horizontal.offset | `number` | | 当没有设置 label 时,右边控制器的偏移量 |
2020-07-29 16:20:21 +08:00
| api | [API](../types/api) | | 当前步骤保存接口,可以不配置。 |
| initApi | [API](../types/api) | | 当前步骤数据初始化接口。 |
2020-07-28 10:03:53 +08:00
| initFetch | `boolean` | | 当前步骤数据初始化接口是否初始拉取。 |
2020-07-29 16:20:21 +08:00
| initFetchOn | [表达式](../concepts/expression) | | 当前步骤数据初始化接口是否初始拉取,用表达式来决定。 |
2020-07-28 10:03:53 +08:00
| controls | Array<[FormItem](./form/formItem)> | | 当前步骤的表单项集合,请参考 [FormItem](./form/formItem)。 |