docs: ✏️ [Container](#container)

This commit is contained in:
SIMDD 2019-05-09 21:39:29 +08:00
parent 620a557bb7
commit e953cfafee
5 changed files with 43 additions and 43 deletions

View File

@ -3,10 +3,10 @@
图表渲染器,采用 echarts 渲染,配置格式跟 echarts 相同,配置文档[文档](http://echarts.baidu.com/option.html#title)
| 属性名 | 类型 | 默认值 | 说明 |
| --------- | ----------------------- | --------- | ------------------------------------------------------------------ |
| --------- | --------------------------------- | --------- | ------------------------------------------------------------------ |
| type | `string` | `"chart"` | 指定为 chart 渲染器 |
| className | `string` | | 外层 Dom 的类名 |
| body | [Container](#container) | | 内容容器 |
| body | [Container](./Types.md#container) | | 内容容器 |
| api | [api](#api) | | 配置项远程地址 |
| initFetch | `boolean` | | 是否默认拉取 |
| interval | `number` | | 刷新时间(最低 3000) |

View File

@ -3,9 +3,9 @@
还是为了布局,可以把一部分 [FormItem](#formItem) 合并到一个 panel 里面单独展示。
- `title` panel 标题
- `body` [Container](#container) 可以是其他渲染模型。
- `body` [Container](./Types.md#container) 可以是其他渲染模型。
- `bodyClassName` body 的 className.
- `footer` [Container](#container) 可以是其他渲染模型。
- `footer` [Container](./Types.md#container) 可以是其他渲染模型。
- `footerClassName` footer 的 className.
- `controls``body` 二选一,如果设置了 controls 优先显示表单集合。

View File

@ -3,7 +3,7 @@
可以把相关信息以盒子的形式展示到一块。
| 属性名 | 类型 | 默认值 | 说明 |
| ---------------- | ------------------------------ | -------------------------------------- | ------------------- |
| ---------------- | --------------------------------- | -------------------------------------- | ------------------- |
| type | `string` | `"panel"` | 指定为 Panel 渲染器 |
| className | `string` | `"panel-default"` | 外层 Dom 的类名 |
| headerClassName | `string` | `"panel-heading"` | header 区域的类名 |
@ -11,9 +11,9 @@
| actionsClassName | `string` | `"panel-footer"` | actions 区域的类名 |
| bodyClassName | `string` | `"panel-body"` | body 区域的类名 |
| title | `string` | | 标题 |
| header | [Container](#container) | | 顶部容器 |
| body | [Container](#container) | | 内容容器 |
| footer | [Container](#container) | | 底部容器 |
| header | [Container](./Types.md#container) | | 顶部容器 |
| body | [Container](./Types.md#container) | | 内容容器 |
| footer | [Container](./Types.md#container) | | 底部容器 |
| actions | Array Of [Button](./Button.md) | | 按钮区域 |
```schema:height="300" scope="body"

View File

@ -5,10 +5,10 @@
同时该组件,还支持 api 数值自动监听,比如 `getData?type=$type` 只要当前环境 type 值发生变化,就会自动重新拉取。
| 属性名 | 类型 | 默认值 | 说明 |
| ------------------- | ----------------------- | ----------- | ----------------------------------------- |
| ------------------- | --------------------------------- | ----------- | ----------------------------------------- |
| type | `string` | `"service"` | 指定为 service 渲染器 |
| className | `string` | | 外层 Dom 的类名 |
| body | [Container](#container) | | 内容容器 |
| body | [Container](./Types.md#container) | | 内容容器 |
| api | [api](#api) | | 数据源 API 地址 |
| initFetch | `boolean` | | 是否默认拉取 |
| schemaApi | [api](#api) | | 用来获取远程 Schema 的 api |

View File

@ -3,11 +3,11 @@
简单的一个容器。
| 属性名 | 类型 | 默认值 | 说明 |
| --------- | ----------------------- | ----------- | ---------------------------- |
| --------- | --------------------------------- | ----------- | ---------------------------- |
| type | `string` | `"wrapper"` | 指定为 Wrapper 渲染器 |
| className | `string` | | 外层 Dom 的类名 |
| size | `string` | | 支持: `xs`、`sm`、`md`和`lg` |
| body | [Container](#container) | | 内容容器 |
| body | [Container](./Types.md#container) | | 内容容器 |
```schema:height="200" scope="body"
{