fix: #368 && improve doc texts (#370)

[bugfix] 修复文档错误
This commit is contained in:
nrz 2018-07-17 14:14:58 +08:00 committed by Yao
parent 8816e421e8
commit bcaf4095e6
5 changed files with 10 additions and 11 deletions

View File

@ -44,4 +44,4 @@
| color | 字体颜色 | String | `#fff`
| background-color | 背景颜色 | String | `#f44`
| font-size | 字体大小 | Number | 10
| box-shadow | 为了更好的控制宽度使用了box-shadow来实现badge的边框可以根据box-shadow的语法自行修改颜色和宽度 | String | `0 0 0 2px #fff`
| box-shadow | 同css box-shadow语法 | String | `0 0 0 2px #fff`

View File

@ -17,7 +17,7 @@ Panel 提供了一块白色的展示区域,使用方式如下
```
| 参数 | 说明 | 类型 | 默认值 | 必须 |
|-----------|-----------|-----------|-------------|-------------|
| type | capsule的主体颜色 | String | ''有danger这个主题色 | |
| type | capsule的主体颜色可选值danger | String | '' | |
| color | 自定义capsule颜色 | String | - | |
| leftText | 左侧文案 | String | - | |
| rightText | 右侧文案 | String | - | |

View File

@ -46,4 +46,4 @@
### 增强优化
* 支持可选择时间区域限制
支持可选择时间区域限制

View File

@ -20,6 +20,5 @@
![](https://img.yzcdn.cn/public_files/2017/12/03/c582397894f57f1c72fb28118588f833.jpeg?imageView2/2/w/500/h/0/q/100)
![](https://img.yzcdn.cn/public_files/2017/12/03/ab37f55520dfdcdf8dbe8951025e379a.jpeg?imageView2/2/w/500/h/0/q/100)
![](https://img.yzcdn.cn/public_files/2017/12/03/ab37f55520dfdcdf8dbe8951025e379a.jpeg?imageView2/2/w/500/h/0/q/100)
![](https://img.yzcdn.cn/public_files/2017/12/03/e862638f5cab9c0c7d2be38702c162df.jpeg?imageView2/2/w/500/h/0/q/100)
![](https://img.yzcdn.cn/public_files/2017/12/03/dfa76b99ca1c37671628e1c7b224dbb9.jpeg?imageView2/2/w/500/h/0/q/100)

View File

@ -46,10 +46,10 @@ Toast.loading({
| Toast.resetDefaultOptions | `type` 可选 global/page | - | 重置默认配置,对所有 Toast 生效 |
#### options 具体参数如下
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|-----------|-----------|-----------|-------------|-------------|
| message | toast 显示文案 | String | - | |
| type | 提示类型 | String | - | loading success fail |
| icon | toast 显示图标,可以用 icon 里面支持的所有图标 | String | - | - |
| image | toast 显示图标,为图片的链接,传入此值后会覆盖 icon 值 | String | - | |
| timeout | toast 显示时间小于0则会一直显示需要手动调用 Toast.clear 清除 | Number | - | |
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| message | toast 显示文案 | String | - |
| type | 提示类型, 可选值loadingsuccessfail | String | - |
| icon | toast 显示图标,可以用 icon 里面支持的所有图标 | String | - |
| image | toast 显示图标,为图片的链接,传入此值后会覆盖 icon 值 | String | - |
| timeout | toast 显示时间小于0则会一直显示需要手动调用 Toast.clear 清除 | Number | - |