wxc-checkbox
Weex 复选框组件
规则
- 建议以成组的方式出现,使用wxc-checkbox-list
Demo
使用方法
<template>
<div class="wxc-demo">
<scroller class="scroller">
<wxc-checkbox title="默认"></wxc-checkbox>
<wxc-checkbox title="默认选中"
:checked="true"></wxc-checkbox>
<wxc-checkbox title="未选中不可更改"
:disabled="true"></wxc-checkbox>
<wxc-checkbox title="选中不可更改"
:disabled="true"
:checked="true"></wxc-checkbox>
<div class="margin">
<wxc-checkbox-list :list="list"
@wxcCheckBoxListChecked="wxcCheckBoxListChecked"></wxc-checkbox-list>
<text class="checked-text">选中项 {{checkedList.toString()}}</text>
</div>
</scroller>
</div>
</template>
<script>
import { WxcCheckbox,WxcCheckboxList } from 'weex-ui'
export default {
components: { WxcCheckbox, WxcCheckboxList },
data: () => ({
list: [
{ title: '选项1', value: 1 },
{ title: '选项2', value: 2, checked: true },
{ title: '选项3', value: 3 },
{ title: '选项4', value: 4 }
],
checkedList: [2]
}),
methods: {
wxcCheckBoxListChecked (e) {
this.checkedList = e.checkedList;
}
}
}
</script>
更多详细情况可以参考 demo
可配置参数
Checkbox
Prop | Type | Required | Default | Description |
---|---|---|---|---|
title | String |
Y |
- |
checkbox显示label |
Value | [String、Number、Object] |
Y |
- |
checkbox的value |
checked | Boolean |
N |
false |
checkbox是否选中 |
disabled | Boolean |
N |
false |
checkbox是否不可选 |
config | Object |
N |
{} |
覆盖颜色和 icon |
has-top-border | Boolean |
N |
false |
是否显示上边 |
has-bottom-border | Boolean |
N |
true |
是否显示下边 |
- 事件回调
//点击事件回调@wxcCheckBoxItemChecked="wxcCheckBoxItemChecked"
将会返回e.value、e.checkedClick to copy
CheckboxList
Prop | Type | Required | Default | Description |
---|---|---|---|---|
list | Array |
Y |
[] |
checkbox列表配置 (*1) |
config | Object |
N |
{} |
覆盖颜色和 icon (*2) |
- 注1: list
const list=[
{ title: '选项1', value: 1 },
{ title: '选项2', value: 2, checked: true },
{ title: '选项3', value: 3 },
{ title: '选项4', value: 4 }
];Click to copy
- 注2: config
// 你可以这样覆盖样式和 icon:
<wxc-checkbox-list :list="list"
:config="config"
@wxcCheckBoxListChecked="wxcCheckBoxListChecked"></wxc-checkbox-list>
const config={
checkedIcon:'https://gw.alicdn.com/tfs/TB1Y9vlpwMPMeJjy1XcXXXpppXa-72-72.png',
disabledIcon:'https://gw.alicdn.com/tfs/TB1PtN3pwMPMeJjy1XdXXasrXXa-72-72.png',
checkedDisabledIcon:'https://gw.alicdn.com/tfs/TB1aPabpwMPMeJjy1XcXXXpppXa-72-72.png',
unCheckedDisabledIcon:'https://gw.alicdn.com/tfs/TB1lTuzpwoQMeJjy0FoXXcShVXa-72-72.png',
checkedColor: '#000000'
}
- 事件回调
//点击事件回调@wxcCheckBoxListChecked="wxcCheckBoxListChecked"
将会返回已经选中的e.checkedListClick to copy
Please feel free to use and contribute to the development.
原文: https://alibaba.github.io/weex-ui/#/cn/packages/wxc-checkbox/