docs: ✏️ 文件名大写

This commit is contained in:
SIMDD 2019-05-09 21:58:58 +08:00
parent 5e5c11181a
commit 2eb88d18fe
12 changed files with 13 additions and 13 deletions

View File

@ -69,7 +69,7 @@ Action 是一种特殊的渲染器,它本身是一个按钮,同时它能触
}
```
- `dialog` 当按钮点击后,弹出一个对话框。 关于 dialog 配置,请查看 [Dialog 模型](./dialog.md)。
- `dialog` 当按钮点击后,弹出一个对话框。 关于 dialog 配置,请查看 [Dialog 模型](./Dialog.md)。
```schema:height="200"
{
@ -96,7 +96,7 @@ Action 是一种特殊的渲染器,它本身是一个按钮,同时它能触
}
```
- `drawer` 当按钮点击后,弹出一个抽出式对话框。 关于 drawer 配置,请查看 [Drawer 模型](./drawer.md)。
- `drawer` 当按钮点击后,弹出一个抽出式对话框。 关于 drawer 配置,请查看 [Drawer 模型](./Drawer.md)。
```schema:height="200"
{

View File

@ -2,7 +2,7 @@
数组输入框配置
其实就是 [Combo](./combo.md) 的一个 flat 用法。
其实就是 [Combo](./Combo.md) 的一个 flat 用法。
- `type` 请设置成 `array`
- `items` 配置单项表单类型

View File

@ -1,6 +1,6 @@
### List(CRUD)
请参考[List](./list.md)
请参考[List](./List.md)
```schema:height="800" scope="body"
{

View File

@ -1,6 +1,6 @@
### Dialog
Dialog 由 [Action](./Action.md) 触发。他是一个类似于 [Page](./page.md) 的容器模型。
Dialog 由 [Action](./Action.md) 触发。他是一个类似于 [Page](./Page.md) 的容器模型。
| 属性名 | 类型 | 默认值 | 说明 |
| ------------- | ----------------------------------------------- | ------------ | ------------------------------------------------ |

View File

@ -1,6 +1,6 @@
## Field
主要用在 [Table](./Table.md) 的列配置 Column、[List](./list.md) 的内容、[Card](./Card.md) 卡片的内容和表单的[Static-XXX](./Static.md#static-xxx) 中。它主要用来展示数据。
主要用在 [Table](./Table.md) 的列配置 Column、[List](./List.md) 的内容、[Card](./Card.md) 卡片的内容和表单的[Static-XXX](./Static.md#static-xxx) 中。它主要用来展示数据。
```schema:height="450" scope="body"
{

View File

@ -1,6 +1,6 @@
### HBox(FormItem)
支持 form 内部再用 HBox 布局,实现左右排列。没错用 [Group](./group.md) 也能实现,所以还是推荐用 [Group](./group.md)。
支持 form 内部再用 HBox 布局,实现左右排列。没错用 [Group](./Group.md) 也能实现,所以还是推荐用 [Group](./Group.md)。
- `type` 请设置成 `hbox`
- `columns` 数据,用来配置列内容。每个 column 又一个独立的渲染器。

View File

@ -3,7 +3,7 @@
树形结构选择框。
- `type` 请设置成 `nested-select`
- `options` 类似于 [select](./select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `options` 类似于 [select](./Select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `source` Api 地址,如果选项不固定,可以通过配置 `source` 动态拉取。
- `multiple` 默认为 `false`, 设置成 `true` 表示可多选。
- `joinValues` 默认为 `true`

View File

@ -14,7 +14,7 @@
- `extractValue` 默认为 `false`, `joinValues`设置为`false`时生效, 开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。
- `delimiter` 默认为 `,`
- `modalMode` 设置 `dialog` 或者 `drawer`,用来配置弹出方式。
- `pickerSchema` 默认为 `{mode: 'list', listItem: {title: '${label}'}}`, 即用 List 类型的渲染,来展示列表信息。更多的玩法请参考 [CRUD](./crud.md) 的配置。
- `pickerSchema` 默认为 `{mode: 'list', listItem: {title: '${label}'}}`, 即用 List 类型的渲染,来展示列表信息。更多的玩法请参考 [CRUD](./CRUD.md) 的配置。
- 更多配置请参考 [FormItem](./FormItem.md)
```schema:height="300" scope="form-item"

View File

@ -16,7 +16,7 @@
- `hiddenOn` 通过[表达式](./Types.md#表达式)来配置当前表单项是否隐藏。
- `inputClassName` 表单控制器类名。
- `labelClassName` label 的类名。
- `tpl` 如果想一次展示多条数据,可以考虑用 `tpl`,模板引擎是 lodash template同时你还可以简单用 `$` 取值。 具体请查看 [tpl](./tpl.md)
- `tpl` 如果想一次展示多条数据,可以考虑用 `tpl`,模板引擎是 lodash template同时你还可以简单用 `$` 取值。 具体请查看 [tpl](./Tpl.md)
```schema:height="250" scope="form-item"
{

View File

@ -75,7 +75,7 @@ tpl 类型的渲染器支持用 JS 模板引擎来组织输出,采用的 lodas
- `html2ubb` 我想你应该不需要,贴吧定制的 ubb 格式。
- `split` 可以将字符传通过分隔符分离成数组,默认分隔符为 `,` 如: `${ids|split|last}` 即取一段用逗号分割的数值中的最后一个。
- `nth` 取数组中的第 n 个成员。如: `${ids|split|nth:1}`
- `str2date` 请参考 [date](./date.md) 中日期默认值的设置格式。
- `str2date` 请参考 [date](./Date.md) 中日期默认值的设置格式。
- `duration` 格式化成时间端如:`2` -=> `2秒` `67` => `1分7秒` `1111111` => `13天21时39分31秒`
- `asArray` 将数据包成数组如: `a` => `[a]`
- `lowerCase` 转小写

View File

@ -3,7 +3,7 @@
树形结构输入框。
- `type` 请设置成 `tree`
- `options` 类似于 [select](./select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `options` 类似于 [select](./Select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `source` Api 地址,如果选项不固定,可以通过配置 `source` 动态拉取。
- `hideRoot` 默认是会显示一个顶级,如果不想显示,请设置 `false`
- `rootLabel` 默认为 `顶级`,当 hideRoot 不为 `false` 时有用,用来设置顶级节点的文字。

View File

@ -3,7 +3,7 @@
树形结构选择框。
- `type` 请设置成 `tree-select`
- `options` 类似于 [select](./select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `options` 类似于 [select](./Select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `source` Api 地址,如果选项不固定,可以通过配置 `source` 动态拉取。
- `hideRoot` 默认是会显示一个顶级,如果不想显示,请设置 `false`
- `rootLabel` 默认为 `顶级`,当 hideRoot 不为 `false` 时有用,用来设置顶级节点的文字。