feat(Checkbox): rename bind-parent to bind-group

This commit is contained in:
陈嘉涵 2019-09-27 11:14:55 +08:00
parent 444485f974
commit 294ffd4f55
5 changed files with 12 additions and 58 deletions

View File

@ -84,27 +84,6 @@
</van-cell-group>
</van-checkbox-group>
</demo-block>
<demo-block :title="$t('title6')">
<van-checkbox v-model="selectAll">{{ $t('selectAll') }}</van-checkbox>
<van-checkbox-group
v-model="result4"
@change="select4"
>
<van-checkbox
v-for="(item, index) in list"
:key="index"
:name="item"
>
{{ $t('checkbox') }} {{ item }}
</van-checkbox>
<van-checkbox
:bind-parent="false"
v-model="other"
>
{{ $t('checkbox') }} {{ $t('other') }}
</van-checkbox>
</van-checkbox-group>
</demo-block>
</demo-section>
</template>
@ -117,10 +96,7 @@ export default {
customColor: '自定义颜色',
title3: '复选框组',
title4: '设置最大可选数',
title5: '搭配单元格组件使用',
title6: '取消和复选框组的绑定',
other: '其他',
selectAll: '全选',
title5: '搭配单元格组件使用'
},
'en-US': {
checkbox: 'Checkbox',
@ -128,10 +104,7 @@ export default {
customColor: 'Custom Color',
title3: 'Checkbox Group',
title4: 'Maximum amount of checked options',
title5: 'Inside a Cell',
title6: 'Cancel Bind Group',
other: 'other',
selectAll: 'select all',
title5: 'Inside a Cell'
}
},
@ -148,34 +121,16 @@ export default {
result: ['a', 'b'],
result2: [],
result3: [],
result4: [],
other: true,
selectAll: false,
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'
}
};
},
watch: {
selectAll() {
if (this.selectAll) {
this.result4 = this.list;
} else {
this.result4 = [];
}
}
},
methods: {
toggle(index) {
this.$refs.checkboxes[index].toggle();
},
select4() {
if (this.result4.length === 3) {
this.selectAll = true;
} else {
this.selectAll = false;
}
}
}
};

View File

@ -145,6 +145,7 @@ export default {
| label-disabled | Whether to disable label click | `Boolean` | `false` |
| label-position | Can be set to `left` | `String` | `right` |
| checked-color | Checked color | `String` | `#1989fa` | - |
| bind-group | Whether to bind with CheckboxGroup | `boolean` | `true` |
### CheckboxGroup API

View File

@ -75,12 +75,13 @@ test('checkbox group', async () => {
await later();
expect(wrapper.vm.result).toEqual(['b']);
});
test('checkbox group unbind', async () => {
const wrapper = mount({
template: `
<checkbox-group v-model="result" :max="2">
<checkbox v-for="item in list" :key="item" :name="item"></checkbox>
<checkbox :bind-parent='false' v-model="other"></checkbox>
<checkbox v-for="item in list" :key="item" :name="item" />
<checkbox :bind-parent='false' v-model="value" />
</checkbox-group>
`,
components: {
@ -90,6 +91,7 @@ test('checkbox group unbind', async () => {
data() {
return {
result: [],
value: false,
list: ['a', 'b', 'c']
};
}
@ -99,10 +101,7 @@ test('checkbox group unbind', async () => {
icons.at(3).trigger('click');
await later();
expect(wrapper.vm.result).toEqual([]);
icons.at(3).trigger('click');
await later();
expect(wrapper.vm.result).toEqual([]);
expect(wrapper.vm.value).toBeTruthy();
});
test('click event', () => {

View File

@ -79,7 +79,6 @@ export default {
>
复选框 {{ item }}
</van-checkbox>
<vant-checkbox :bind-parent="false">不与复选框组绑定</vant-checkbox>
</van-checkbox-group>
```
@ -149,7 +148,7 @@ export default {
| label-disabled | 是否禁用复选框文本点击 | `Boolean` | `false` | - |
| label-position | 文本位置,可选值为 `left` | `String` | `right` | 1.1.11 |
| checked-color | 选中状态颜色 | `String` | `#1989fa` | 1.4.3 |
| bind-parent | 与复选框组绑定 | `boolean` | `true` | xxx |
| bind-group | 是否与复选框组绑定 | `boolean` | `true` | 1.6.26 |
### CheckboxGroup API

View File

@ -18,9 +18,9 @@ export const CheckboxMixin = (parent, bem) => ({
type: String,
default: 'round'
},
bindParent: {
bindGroup: {
type: Boolean,
default: true,
default: true
}
},