diff --git a/example/pages/image/index.wxss b/example/pages/image/index.wxss index c093ba10..748ae5b3 100644 --- a/example/pages/image/index.wxss +++ b/example/pages/image/index.wxss @@ -1,3 +1,7 @@ +page { + background-color: #fff; +} + .text { width: 100%; margin-top: 5px; diff --git a/example/pages/radio/index.js b/example/pages/radio/index.js index 44984d30..8849cc17 100644 --- a/example/pages/radio/index.js +++ b/example/pages/radio/index.js @@ -5,13 +5,14 @@ Page({ radio1: '1', radio2: '2', radio3: '1', + radio4: '1', + radio5: '1', icon: { normal: 'https://img.yzcdn.cn/public_files/2017/10/13/c547715be149dd3faa817e4a948b40c4.png', active: 'https://img.yzcdn.cn/public_files/2017/10/13/793c77793db8641c4c325b7f25bf130d.png' - }, - list: ['1', '2', '3', '4'] + } }, onChange(event) { @@ -22,7 +23,7 @@ Page({ onClick(event) { const { name } = event.currentTarget.dataset; this.setData({ - radio3: name + radio5: name }); } }); diff --git a/example/pages/radio/index.wxml b/example/pages/radio/index.wxml index 2a99538e..abdf6bcd 100644 --- a/example/pages/radio/index.wxml +++ b/example/pages/radio/index.wxml @@ -2,11 +2,10 @@ 单选框 1 - 单选框 2 + 单选框 2 @@ -15,50 +14,69 @@ disabled value="{{ radio2 }}" data-key="radio2" - custom-class="demo-radio-group" bind:change="onChange" > 单选框 1 - 单选框 2 + 单选框 2 - - 单选框 - + 单选框 + 单选框 + - - 自定义图标 - - + + + 自定义图标 + + + + 自定义图标 + + + - + - + + + + diff --git a/example/pages/radio/index.wxss b/example/pages/radio/index.wxss index 5ce39d49..1c8ebcc7 100644 --- a/example/pages/radio/index.wxss +++ b/example/pages/radio/index.wxss @@ -1,15 +1,7 @@ -.demo-radio-group { - padding: 0 17px; -} - .demo-radio { margin-bottom: 10px; } -.value-class { - flex: none !important; -} - .icon { width: 20px; } diff --git a/packages/radio/README.md b/packages/radio/README.md index 54f5e4fe..6e5ffca5 100644 --- a/packages/radio/README.md +++ b/packages/radio/README.md @@ -29,7 +29,6 @@ Page({ data: { radio: '1' }, - onChange(event) { this.setData({ radio: event.detail @@ -40,7 +39,7 @@ Page({ ### 禁用状态 -通过`disabled`属性禁止选项切换,在`van-radio`上设置`diabled`可以禁用单个选项 +通过`disabled`属性禁止选项切换,在`Radio`上设置`diabled`可以禁用单个选项 ```html @@ -51,22 +50,31 @@ Page({ ### 自定义颜色 +通过`checked-color`属性设置选中状态的图标颜色 + ```html -复选框 + + 单选框 1 + 单选框 2 + + ``` ### 自定义图标 -通过 icon 插槽自定义图标 +通过`icon`插槽自定义图标,需要设置`use-icon-slot`属性 ```html - - 自定义图标 - - + + + 自定义图标 + + + + 自定义图标 + + + ``` ```js @@ -78,7 +86,6 @@ Page({ active: '//img.yzcdn.cn/icon-active.png' } }, - onChange(event) { this.setData({ radio: event.detail @@ -96,21 +103,19 @@ Page({ - + - + @@ -137,27 +142,29 @@ Page({ }); ``` -```css -.value-class { - flex: none !important; -} -``` ## API +### RadioGroup Props + +| 参数 | 说明 | 类型 | 默认值 | 版本 | +|-----------|-----------|-----------|-------------|-------------| +| name | 在表单内提交时的标识符 | *string* | - | - | +| value | 当前选中项的标识符 | *any* | - | - | +| disabled | 是否禁用所有单选框 | *boolean* | `false` | - | + ### Radio Props | 参数 | 说明 | 类型 | 默认值 | 版本 | |-----------|-----------|-----------|-------------|-------------| -| name | 标识 Radio 名称 | *string* | - | - | -| value | 当前选中项的 name | *any* | - | - | -| shape | 形状,可选值为 `round` `square` | *string* | `round` | - | +| name | 标识符 | *string* | - | - | +| shape | 形状,可选值为 `square` | *string* | `round` | - | | disabled | 是否为禁用状态 | *boolean* | `false` | - | -| icon-size | 图标大小,默认单位为`px` | *string \| number* | `20px` | - | | label-disabled | 是否禁用文本内容点击 | *boolean* | `false` | - | | label-position | 文本位置,可选值为 `left` | *string* | `right` | - | -| use-icon-slot | 是否使用 icon slot | *boolean* | `false` | - | +| icon-size | 图标大小,默认单位为`px` | *string \| number* | `20px` | - | | checked-color | 选中状态颜色 | *string* | `#1989fa` | - | +| use-icon-slot | 是否使用 icon 插槽 | *boolean* | `false` | - | ### Radio Event @@ -173,14 +180,6 @@ Page({ | icon-class | 图标样式类 | | label-class | 描述信息样式类 | -### RadioGroup Props - -| 参数 | 说明 | 类型 | 默认值 | 版本 | -|-----------|-----------|-----------|-------------|-------------| -| name | 在表单内提交时的标识符 | *string* | - | - | -| value | 当前选中项的 name | *any* | - | - | -| disabled | 是否禁用所有单选框 | *boolean* | `false` | - | - ### RadioGroup Event | 事件名 | 说明 | 回调参数 |