mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[new feature] Radio & Checkbox: 统一Radio与Checkbox的API
This commit is contained in:
parent
8e5e677f83
commit
34d6b1b68b
@ -30,8 +30,8 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
toggle(event) {
|
toggle(event) {
|
||||||
const { name } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const checkbox = this.selectComponent(`.checkboxes-${name}`);
|
const checkbox = this.selectComponent(`.checkboxes-${index}`);
|
||||||
checkbox.toggle();
|
checkbox.toggle();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -86,10 +86,10 @@
|
|||||||
title="复选框{{ item }}"
|
title="复选框{{ item }}"
|
||||||
value-class="value-class"
|
value-class="value-class"
|
||||||
clickable
|
clickable
|
||||||
data-name="{{ item }}"
|
data-index="{{ index }}"
|
||||||
bind:click="toggle"
|
bind:click="toggle"
|
||||||
>
|
>
|
||||||
<van-checkbox catch:tap="noop" class="checkboxes-{{ item }}" name="{{ item }}" />
|
<van-checkbox catch:tap="noop" class="checkboxes-{{ index }}" name="{{ item }}" />
|
||||||
</van-cell>
|
</van-cell>
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
</van-checkbox-group>
|
</van-checkbox-group>
|
||||||
|
@ -4,7 +4,14 @@ Page({
|
|||||||
data: {
|
data: {
|
||||||
radio1: '1',
|
radio1: '1',
|
||||||
radio2: '2',
|
radio2: '2',
|
||||||
radio3: '1'
|
radio3: '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) {
|
onChange(event) {
|
||||||
@ -13,9 +20,9 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
const { value } = event.currentTarget.dataset;
|
const { name } = event.currentTarget.dataset;
|
||||||
this.setData({
|
this.setData({
|
||||||
radio3: value
|
radio3: name
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -34,14 +34,31 @@
|
|||||||
</van-radio>
|
</van-radio>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block title="自定义图标" padding>
|
||||||
|
<van-checkbox use-icon-slot value="1" name="1">
|
||||||
|
自定义图标
|
||||||
|
<image
|
||||||
|
slot="icon"
|
||||||
|
src="{{ radio3 === '1' ? icon.active : icon.normal }}"
|
||||||
|
class="icon"
|
||||||
|
mode="widthFix"
|
||||||
|
/>
|
||||||
|
</van-checkbox>
|
||||||
|
</demo-block>
|
||||||
|
|
||||||
<demo-block title="与 Cell 组件一起使用">
|
<demo-block title="与 Cell 组件一起使用">
|
||||||
<van-radio-group value="{{ radio3 }}">
|
<van-radio-group value="{{ radio3 }}">
|
||||||
<van-cell-group>
|
<van-cell-group>
|
||||||
<van-cell title="单选框 1" clickable data-value="1" bind:click="onClick">
|
<van-cell
|
||||||
<van-radio name="1" />
|
wx:for="{{ list }}"
|
||||||
</van-cell>
|
wx:key="index"
|
||||||
<van-cell title="单选框 2" clickable data-value="2" bind:click="onClick">
|
title="单选框 {{ item }}"
|
||||||
<van-radio name="2" />
|
value-class="value-class"
|
||||||
|
clickable
|
||||||
|
data-name="{{ item }}"
|
||||||
|
bind:click="onClick"
|
||||||
|
>
|
||||||
|
<van-radio name="{{ item }}" />
|
||||||
</van-cell>
|
</van-cell>
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
</van-radio-group>
|
</van-radio-group>
|
||||||
|
@ -5,3 +5,11 @@
|
|||||||
.demo-radio {
|
.demo-radio {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.value-class {
|
||||||
|
flex: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
width: 20px;
|
||||||
|
}
|
||||||
|
@ -7,32 +7,41 @@ VantComponent({
|
|||||||
name: 'checkbox',
|
name: 'checkbox',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target: Weapp.Component) {
|
linked(target: Weapp.Component) {
|
||||||
const { value, disabled } = this.data;
|
this.children = this.children || [];
|
||||||
target.set({
|
this.children.push(target);
|
||||||
value: value.indexOf(target.data.name) !== -1,
|
this.updateChild(target);
|
||||||
disabled: disabled || target.data.disabled
|
},
|
||||||
});
|
unlinked(target: Weapp.Component) {
|
||||||
|
this.children = this.children.filter(
|
||||||
|
(child: Weapp.Component) => child !== target
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
max: Number,
|
max: Number,
|
||||||
value: Array,
|
value: {
|
||||||
disabled: Boolean
|
type: Array,
|
||||||
|
observer: 'updateChildren'
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
observer: 'updateChildren'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
methods: {
|
||||||
value(value) {
|
updateChildren() {
|
||||||
const children = this.getRelationNodes('../checkbox/index');
|
(this.children || []).forEach((child: Weapp.Component) =>
|
||||||
children.forEach(child => {
|
this.updateChild(child)
|
||||||
child.set({ value: value.indexOf(child.data.name) !== -1 });
|
);
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
disabled(disabled: boolean) {
|
updateChild(child: Weapp.Component) {
|
||||||
const children = this.getRelationNodes('../checkbox/index');
|
const { value, disabled } = this.data;
|
||||||
children.forEach(child => {
|
child.set({
|
||||||
child.set({ disabled: disabled || child.data.disabled });
|
value: value.indexOf(child.data.name) !== -1,
|
||||||
|
disabled: disabled || child.data.disabled
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,20 @@ es5
|
|||||||
<van-checkbox value="{{ checked }}" bind:change="onChange">复选框</van-checkbox>
|
<van-checkbox value="{{ checked }}" bind:change="onChange">复选框</van-checkbox>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
Page({
|
||||||
|
data: {
|
||||||
|
checked: true
|
||||||
|
},
|
||||||
|
|
||||||
|
onChange(event) {
|
||||||
|
this.setData({
|
||||||
|
checked: event.detail
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
#### 禁用状态
|
#### 禁用状态
|
||||||
|
|
||||||
```html
|
```html
|
||||||
@ -119,7 +133,7 @@ Page({
|
|||||||
#### 设置最大可选数
|
#### 设置最大可选数
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<van-checkbox-group value="{{ result }}" bind:change="onChange" max="2">
|
<van-checkbox-group value="{{ result }}" bind:change="onChange" max="{{ 2 }}">
|
||||||
<van-checkbox
|
<van-checkbox
|
||||||
wx:for="{{ list }}"
|
wx:for="{{ list }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
@ -141,11 +155,12 @@ Page({
|
|||||||
wx:for="{{ list }}"
|
wx:for="{{ list }}"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
title="复选框 {{ item }}"
|
title="复选框 {{ item }}"
|
||||||
|
value-class="value-class"
|
||||||
clickable
|
clickable
|
||||||
data-name="{{ item }}"
|
data-index="{{ index }}"
|
||||||
bind:click="toggle"
|
bind:click="toggle"
|
||||||
>
|
>
|
||||||
<van-checkbox catch:tap="noop" class="checkboxes-{{ item }}" name="{{ item }}" />
|
<van-checkbox catch:tap="noop" class="checkboxes-{{ index }}" name="{{ item }}" />
|
||||||
</van-cell>
|
</van-cell>
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
</van-checkbox-group>
|
</van-checkbox-group>
|
||||||
@ -165,8 +180,8 @@ Page({
|
|||||||
}
|
}
|
||||||
|
|
||||||
toggle(event) {
|
toggle(event) {
|
||||||
const { name } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const checkbox = this.selectComponent(`.checkboxes-${name}`);
|
const checkbox = this.selectComponent(`.checkboxes-${index}`);
|
||||||
checkbox.toggle();
|
checkbox.toggle();
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -174,16 +189,23 @@ Page({
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
```css
|
||||||
|
.value-class {
|
||||||
|
flex: none !important;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Checkbox API
|
### Checkbox API
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
|-----------|-----------|-----------|-------------|
|
|-----------|-----------|-----------|-------------|
|
||||||
| name | 标识 Checkbox 名称 | `any` | - |
|
| name | 标识 Checkbox 名称 | `String` | - |
|
||||||
|
| shape | 形状,可选值为 `round` `square` | `String` | `round` |
|
||||||
| value | 是否为选中状态 | `Boolean` | `false` |
|
| value | 是否为选中状态 | `Boolean` | `false` |
|
||||||
| disabled | 是否禁用单选框 | `Boolean` | `false` |
|
| disabled | 是否禁用单选框 | `Boolean` | `false` |
|
||||||
| label-disabled | 是否禁用单选框内容点击 | `Boolean` | `false` |
|
| label-disabled | 是否禁用单选框内容点击 | `Boolean` | `false` |
|
||||||
| label-position | 文本位置,可选值为 `left` | `String` | `right` |
|
| label-position | 文本位置,可选值为 `left` | `String` | `right` |
|
||||||
| shape | 形状,可选值为 `round` `square` | `String` | `round` |
|
|
||||||
| use-icon-slot | 是否使用 icon slot | `Boolean` | `false` |
|
| use-icon-slot | 是否使用 icon slot | `Boolean` | `false` |
|
||||||
| checked-color | 选中状态颜色 | `String` | `#1989fa` |
|
| checked-color | 选中状态颜色 | `String` | `#1989fa` |
|
||||||
|
|
||||||
@ -202,6 +224,14 @@ Page({
|
|||||||
|-----------|-----------|-----------|
|
|-----------|-----------|-----------|
|
||||||
| bind:change | 当绑定值变化时触发的事件 | 当前组件的值 |
|
| bind:change | 当绑定值变化时触发的事件 | 当前组件的值 |
|
||||||
|
|
||||||
|
### Checkbox 外部样式类
|
||||||
|
|
||||||
|
| 类名 | 说明 |
|
||||||
|
|-----------|-----------|
|
||||||
|
| custom-class | 根节点样式类 |
|
||||||
|
| icon-class | 图标样式类 |
|
||||||
|
| label-class | 描述信息样式类 |
|
||||||
|
|
||||||
### CheckboxGroup Event
|
### CheckboxGroup Event
|
||||||
|
|
||||||
| 事件名 | 说明 | 回调参数 |
|
| 事件名 | 说明 | 回调参数 |
|
||||||
@ -210,10 +240,10 @@ Page({
|
|||||||
|
|
||||||
### Checkbox Slot
|
### Checkbox Slot
|
||||||
|
|
||||||
| 名称 | 说明 | slot-scope |
|
| 名称 | 说明 |
|
||||||
|-----------|-----------|-----------|
|
|-----------|-----------|
|
||||||
| - | 自定义文本 | - |
|
| - | 自定义文本 |
|
||||||
| icon | 自定义图标 | checked: 是否为选中状态 |
|
| icon | 自定义图标 |
|
||||||
|
|
||||||
### Checkbox 方法
|
### Checkbox 方法
|
||||||
|
|
||||||
|
@ -14,10 +14,6 @@
|
|||||||
flex: none;
|
flex: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
|
||||||
word-break: break-all;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
display: block;
|
display: block;
|
||||||
width: @checkbox-size;
|
width: @checkbox-size;
|
||||||
@ -52,6 +48,7 @@
|
|||||||
&__label {
|
&__label {
|
||||||
margin-left: @checkbox-label-margin;
|
margin-left: @checkbox-label-margin;
|
||||||
color: @checkbox-label-color;
|
color: @checkbox-label-color;
|
||||||
|
word-break: break-all;
|
||||||
|
|
||||||
&--left {
|
&--left {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1,17 +1,28 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
|
function emit(target: Weapp.Component, value: boolean | any[]) {
|
||||||
|
target.$emit('input', value);
|
||||||
|
target.$emit('change', value);
|
||||||
|
}
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
|
|
||||||
relation: {
|
relation: {
|
||||||
name: 'checkbox-group',
|
name: 'checkbox-group',
|
||||||
type: 'ancestor'
|
type: 'ancestor',
|
||||||
|
linked(target) {
|
||||||
|
this.parent = target;
|
||||||
|
},
|
||||||
|
unlinked() {
|
||||||
|
this.parent = null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
value: null,
|
value: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
useIconSlot: Boolean,
|
useIconSlot: Boolean,
|
||||||
checkedColor: String,
|
checkedColor: String,
|
||||||
@ -24,49 +35,47 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
emitChange(value) {
|
emitChange(value: boolean) {
|
||||||
const parent = this.getRelationNodes('../checkbox-group/index')[0];
|
if (this.parent) {
|
||||||
if (parent) {
|
this.setParentValue(this.parent, value);
|
||||||
this.setParentValue(parent, value);
|
|
||||||
} else {
|
} else {
|
||||||
this.$emit('input', value);
|
emit(this, value);
|
||||||
this.$emit('change', value);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
toggle() {
|
toggle() {
|
||||||
if (!this.data.disabled) {
|
const { disabled, value } = this.data;
|
||||||
this.emitChange(!this.data.value);
|
if (!disabled) {
|
||||||
|
this.emitChange(!value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onClickLabel() {
|
onClickLabel() {
|
||||||
if (!this.data.disabled && !this.data.labelDisabled) {
|
const { labelDisabled, disabled, value } = this.data;
|
||||||
this.emitChange(!this.data.value);
|
if (!disabled && !labelDisabled) {
|
||||||
|
this.emitChange(!value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setParentValue(parent, value) {
|
setParentValue(parent: Weapp.Component, value: boolean) {
|
||||||
const parentValue = parent.data.value.slice();
|
const parentValue = parent.data.value.slice();
|
||||||
const { name } = this.data;
|
const { name } = this.data;
|
||||||
|
const { max } = parent.data;
|
||||||
|
|
||||||
if (value) {
|
if (value) {
|
||||||
if (parent.data.max && parentValue.length >= parent.data.max) {
|
if (max && parentValue.length >= max) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* istanbul ignore else */
|
|
||||||
if (parentValue.indexOf(name) === -1) {
|
if (parentValue.indexOf(name) === -1) {
|
||||||
parentValue.push(name);
|
parentValue.push(name);
|
||||||
parent.$emit('input', parentValue);
|
emit(parent, parentValue);
|
||||||
parent.$emit('change', parentValue);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const index = parentValue.indexOf(name);
|
const index = parentValue.indexOf(name);
|
||||||
/* istanbul ignore else */
|
|
||||||
if (index !== -1) {
|
if (index !== -1) {
|
||||||
parentValue.splice(index, 1);
|
parentValue.splice(index, 1);
|
||||||
parent.$emit('input', parentValue);
|
emit(parent, parentValue);
|
||||||
parent.$emit('change', parentValue);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,17 @@
|
|||||||
@checkbox-disabled-label-color: @gray;
|
@checkbox-disabled-label-color: @gray;
|
||||||
@checkbox-disabled-background-color: @border-color;
|
@checkbox-disabled-background-color: @border-color;
|
||||||
|
|
||||||
|
// Radio
|
||||||
|
@radio-size: 20px;
|
||||||
|
@radio-border-color: @gray-light;
|
||||||
|
@radio-transition-duration: .2s;
|
||||||
|
@radio-label-margin: 10px;
|
||||||
|
@radio-label-color: @text-color;
|
||||||
|
@radio-checked-icon-color: @blue;
|
||||||
|
@radio-disabled-icon-color: @gray;
|
||||||
|
@radio-disabled-label-color: @gray;
|
||||||
|
@radio-disabled-background-color: @border-color;
|
||||||
|
|
||||||
// Collapse
|
// Collapse
|
||||||
@collapse-item-transition-duration: .3s;
|
@collapse-item-transition-duration: .3s;
|
||||||
@collapse-item-content-padding: 15px;
|
@collapse-item-content-padding: 15px;
|
||||||
|
@ -7,31 +7,40 @@ VantComponent({
|
|||||||
name: 'radio',
|
name: 'radio',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target: Weapp.Component) {
|
linked(target: Weapp.Component) {
|
||||||
const { value, disabled } = this.data;
|
this.children = this.children || [];
|
||||||
target.set({
|
this.children.push(target);
|
||||||
value: value,
|
this.updateChild(target);
|
||||||
disabled: disabled || target.data.disabled
|
},
|
||||||
});
|
unlinked(target: Weapp.Component) {
|
||||||
|
this.children = this.children.filter(
|
||||||
|
(child: Weapp.Component) => child !== target
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
value: null,
|
value: {
|
||||||
disabled: Boolean
|
type: null,
|
||||||
|
observer: 'updateChildren'
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
observer: 'updateChildren'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
methods: {
|
||||||
value(value) {
|
updateChildren() {
|
||||||
const children = this.getRelationNodes('../radio/index');
|
(this.children || []).forEach((child: Weapp.Component) =>
|
||||||
children.forEach(child => {
|
this.updateChild(child)
|
||||||
child.set({ value });
|
);
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
disabled(disabled: boolean) {
|
updateChild(child: Weapp.Component) {
|
||||||
const children = this.getRelationNodes('../radio/index');
|
const { value, disabled } = this.data;
|
||||||
children.forEach(child => {
|
child.set({
|
||||||
child.set({ disabled: disabled || child.data.disabled });
|
value,
|
||||||
|
disabled: disabled || child.data.disabled
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,20 @@ es5
|
|||||||
</van-radio-group>
|
</van-radio-group>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
Page({
|
||||||
|
data: {
|
||||||
|
radio: '1'
|
||||||
|
},
|
||||||
|
|
||||||
|
onChange(event) {
|
||||||
|
this.setData({
|
||||||
|
checked: event.detail
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
#### 禁用状态
|
#### 禁用状态
|
||||||
|
|
||||||
通过`disabled`属性禁止选项切换,在`van-radio`上设置`diabled`可以禁用单个选项
|
通过`disabled`属性禁止选项切换,在`van-radio`上设置`diabled`可以禁用单个选项
|
||||||
@ -50,6 +64,38 @@ es5
|
|||||||
<van-radio checked-color="#07c160">复选框</van-radio>
|
<van-radio checked-color="#07c160">复选框</van-radio>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### 自定义图标
|
||||||
|
|
||||||
|
通过 icon 插槽自定义图标
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-checkbox use-icon-slot value="{{ radio }}" name="1" bind:change="onChange">
|
||||||
|
自定义图标
|
||||||
|
<image
|
||||||
|
slot="icon"
|
||||||
|
src="{{ radio === '1' ? icon.active : icon.normal }}"
|
||||||
|
/>
|
||||||
|
</van-checkbox>
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
Page({
|
||||||
|
data: {
|
||||||
|
radio: true,
|
||||||
|
icon: {
|
||||||
|
normal: '//img.yzcdn.cn/icon-normal.png',
|
||||||
|
active: '//img.yzcdn.cn/icon-active.png'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onChange(event) {
|
||||||
|
this.setData({
|
||||||
|
radio: event.detail
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
#### 与 Cell 组件一起使用
|
#### 与 Cell 组件一起使用
|
||||||
|
|
||||||
此时你需要再引入`Cell`和`CellGroup`组件。
|
此时你需要再引入`Cell`和`CellGroup`组件。
|
||||||
@ -57,25 +103,66 @@ es5
|
|||||||
```html
|
```html
|
||||||
<van-radio-group value="{{ radio }}" bind:change="onChange">
|
<van-radio-group value="{{ radio }}" bind:change="onChange">
|
||||||
<van-cell-group>
|
<van-cell-group>
|
||||||
<van-cell title="单选框 1" clickable data-name="1" bind:click="onClick">
|
<van-cell
|
||||||
|
title="单选框 1"
|
||||||
|
value-class="value-class"
|
||||||
|
clickable
|
||||||
|
data-name="1"
|
||||||
|
bind:click="onClick"
|
||||||
|
>
|
||||||
<van-radio name="1" />
|
<van-radio name="1" />
|
||||||
</van-cell>
|
</van-cell>
|
||||||
<van-cell title="单选框 2" clickable data-name="2" bind:click="onClick">
|
<van-cell
|
||||||
|
title="单选框 2"
|
||||||
|
value-class="value-class"
|
||||||
|
clickable
|
||||||
|
data-name="2"
|
||||||
|
bind:click="onClick"
|
||||||
|
>
|
||||||
<van-radio name="2" />
|
<van-radio name="2" />
|
||||||
</van-cell>
|
</van-cell>
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
</van-radio-group>
|
</van-radio-group>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
Page({
|
||||||
|
data: {
|
||||||
|
radio: '1'
|
||||||
|
},
|
||||||
|
|
||||||
|
onChange(event) {
|
||||||
|
this.setData({
|
||||||
|
radio: event.detail
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
onClick(event) {
|
||||||
|
const { name } = event.currentTarget.dataset;
|
||||||
|
this.setData({
|
||||||
|
radio: name
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
```css
|
||||||
|
.value-class {
|
||||||
|
flex: none !important;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Radio API
|
### Radio API
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
|-----------|-----------|-----------|-------------|
|
|-----------|-----------|-----------|-------------|
|
||||||
| name | 标识 Radio 名称 | `any` | - |
|
| name | 标识 Radio 名称 | `String` | - |
|
||||||
| value | 当前选中项的 name | `any` | - |
|
| value | 当前选中项的 name | `any` | - |
|
||||||
|
| shape | 形状,可选值为 `round` `square` | `String` | `round` |
|
||||||
| disabled | 是否为禁用状态 | `Boolean` | `false` |
|
| disabled | 是否为禁用状态 | `Boolean` | `false` |
|
||||||
| label-disabled | 是否禁用文本内容点击 | `Boolean` | `false` |
|
| label-disabled | 是否禁用文本内容点击 | `Boolean` | `false` |
|
||||||
| label-position | 文本位置,可选值为 `left` | `String` | `right` |
|
| label-position | 文本位置,可选值为 `left` | `String` | `right` |
|
||||||
|
| use-icon-slot | 是否使用 icon slot | `Boolean` | `false` |
|
||||||
| checked-color | 选中状态颜色 | `String` | `#1989fa` |
|
| checked-color | 选中状态颜色 | `String` | `#1989fa` |
|
||||||
|
|
||||||
### Radio Event
|
### Radio Event
|
||||||
@ -105,9 +192,3 @@ es5
|
|||||||
| 事件名 | 说明 | 回调参数 |
|
| 事件名 | 说明 | 回调参数 |
|
||||||
|-----------|-----------|-----------|
|
|-----------|-----------|-----------|
|
||||||
| bind:change | 当绑定值变化时触发的事件 | 当前选中项的 name |
|
| bind:change | 当绑定值变化时触发的事件 | 当前选中项的 name |
|
||||||
|
|
||||||
### RadioGroup 外部样式类
|
|
||||||
|
|
||||||
| 类名 | 说明 |
|
|
||||||
|-----------|-----------|
|
|
||||||
| custom-class | 根节点样式类 |
|
|
||||||
|
@ -1,65 +1,66 @@
|
|||||||
@import '../common/style/var.less';
|
@import '../common/style/var.less';
|
||||||
|
|
||||||
@radio-size: 20px;
|
|
||||||
|
|
||||||
.van-radio {
|
.van-radio {
|
||||||
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
line-height: 1;
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
&__input,
|
&__icon-wrap,
|
||||||
&__label {
|
&__label {
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__input {
|
|
||||||
position: relative;
|
|
||||||
font-size: @radio-size;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__control {
|
|
||||||
z-index: 1;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__label {
|
|
||||||
margin-left: 10px;
|
|
||||||
color: @text-color;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: @radio-size;
|
line-height: @radio-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__icon-wrap {
|
||||||
|
flex: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__icon {
|
||||||
|
display: block;
|
||||||
|
width: @radio-size;
|
||||||
|
height: @radio-size;
|
||||||
|
font-size: 14px;
|
||||||
|
color: transparent;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid @radio-border-color;
|
||||||
|
box-sizing: border-box;
|
||||||
|
transition: @radio-transition-duration;
|
||||||
|
|
||||||
|
&--round {
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--checked {
|
||||||
|
color: @white;
|
||||||
|
background-color: @radio-checked-icon-color;
|
||||||
|
border-color: @radio-checked-icon-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--disabled {
|
||||||
|
background-color: @radio-disabled-background-color;
|
||||||
|
border-color: @radio-disabled-icon-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--disabled&--checked {
|
||||||
|
color: @radio-disabled-icon-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__label {
|
||||||
|
margin-left: @radio-label-margin;
|
||||||
|
color: @radio-label-color;
|
||||||
|
word-break: break-all;
|
||||||
|
|
||||||
&--left {
|
&--left {
|
||||||
margin: 0 10px 0 0;
|
|
||||||
float: left;
|
float: left;
|
||||||
|
margin: 0 @radio-label-margin 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--disabled {
|
||||||
|
color: @radio-disabled-label-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:empty {
|
&:empty {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__icon {
|
|
||||||
pointer-events: none;
|
|
||||||
display: block;
|
|
||||||
line-height: 0;
|
|
||||||
|
|
||||||
&--disabled {
|
|
||||||
color: @gray-light;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--checked {
|
|
||||||
color: @blue;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--check {
|
|
||||||
color: @gray;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -5,34 +5,46 @@ VantComponent({
|
|||||||
|
|
||||||
relation: {
|
relation: {
|
||||||
name: 'radio-group',
|
name: 'radio-group',
|
||||||
type: 'ancestor'
|
type: 'ancestor',
|
||||||
|
linked(target: Weapp.Component) {
|
||||||
|
this.parent = target;
|
||||||
|
},
|
||||||
|
unlinked() {
|
||||||
|
this.parent = null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
classes: ['icon-class', 'label-class'],
|
classes: ['icon-class', 'label-class'],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
name: null,
|
|
||||||
value: null,
|
value: null,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
labelDisabled: Boolean,
|
useIconSlot: Boolean,
|
||||||
|
checkedColor: String,
|
||||||
labelPosition: String,
|
labelPosition: String,
|
||||||
checkedColor: String
|
labelDisabled: Boolean,
|
||||||
|
shape: {
|
||||||
|
type: String,
|
||||||
|
value: 'round'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
emitChange(value) {
|
emitChange(value: boolean) {
|
||||||
const instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
const instance = this.parent || this;
|
||||||
instance.$emit('input', value);
|
instance.$emit('input', value);
|
||||||
instance.$emit('change', value);
|
instance.$emit('change', value);
|
||||||
},
|
},
|
||||||
|
|
||||||
onChange(event: Weapp.Event) {
|
onChange(event: Weapp.Event) {
|
||||||
this.emitChange(event.detail.value);
|
console.log(event);
|
||||||
|
this.emitChange(this.data.name);
|
||||||
},
|
},
|
||||||
|
|
||||||
onClickLabel() {
|
onClickLabel() {
|
||||||
if (!this.data.disabled && !this.data.labelDisabled) {
|
const { disabled, labelDisabled, name } = this.data;
|
||||||
this.emitChange(this.data.name);
|
if (!disabled && !labelDisabled) {
|
||||||
|
this.emitChange(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,23 +1,18 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
|
||||||
<view class="van-radio custom-class">
|
<view class="van-radio custom-class">
|
||||||
<view class="van-radio__input">
|
<view class="van-radio__icon-wrap" bindtap="onChange">
|
||||||
<radio-group bindchange="onChange">
|
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
||||||
<radio
|
|
||||||
value="{{ name }}"
|
|
||||||
checked="{{ value === name }}"
|
|
||||||
disabled="{{ disabled }}"
|
|
||||||
class="van-radio__control"
|
|
||||||
/>
|
|
||||||
</radio-group>
|
|
||||||
<van-icon
|
<van-icon
|
||||||
class="{{ utils.bem('radio__icon', { disabled, checked: !disabled && name === value, check: !disabled && name !== value }) }}"
|
wx:else
|
||||||
|
name="success"
|
||||||
|
class="{{ utils.bem('radio__icon', [shape, { disabled, checked: value === name }]) }}"
|
||||||
|
style="{{ checkedColor && value && !disabled ? 'border-color:' + checkedColor + '; background-color:' + checkedColor : '' }}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
color="{{ value === name ? checkedColor : '' }}"
|
custom-style="line-height: 20px;"
|
||||||
name="{{ value === name ? 'checked' : 'circle' }}"
|
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<view class="van-radio__label van-radio__label--{{ labelPosition }} label-class" bindtap="onClickLabel">
|
<view class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}" bindtap="onClickLabel">
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user