2016-07-27 06:15:02 +00:00
|
|
|
|
<script>
|
2017-01-16 02:39:24 +00:00
|
|
|
|
const cityOptions = ['上海', '北京', '广州', '深圳'];
|
2016-07-27 06:15:02 +00:00
|
|
|
|
module.exports = {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checkList: ['选中且禁用','复选框 A'],
|
|
|
|
|
// checkList2: ['复选框 A'],
|
2017-02-22 09:15:29 +00:00
|
|
|
|
checked: true,
|
2016-09-02 08:09:36 +00:00
|
|
|
|
checked1: false,
|
|
|
|
|
checked2: true,
|
2017-01-16 02:39:24 +00:00
|
|
|
|
isValid: '可用',
|
|
|
|
|
checkAll: false,
|
|
|
|
|
cities: cityOptions,
|
|
|
|
|
checkedCities: ['上海', '北京'],
|
2017-03-22 21:22:00 +00:00
|
|
|
|
checkedCities1: ['上海', '北京'],
|
2017-04-21 08:12:38 +00:00
|
|
|
|
isIndeterminate: true,
|
|
|
|
|
checkboxGroup1: ['上海'],
|
|
|
|
|
checkboxGroup2: ['北京'],
|
|
|
|
|
checkboxGroup3: ['广州']
|
2016-07-27 06:15:02 +00:00
|
|
|
|
};
|
2016-10-10 16:23:27 +00:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleChange(ev) {
|
|
|
|
|
console.log(ev);
|
2017-01-16 02:39:24 +00:00
|
|
|
|
},
|
|
|
|
|
handleCheckAllChange(event) {
|
|
|
|
|
this.checkedCities = event.target.checked ? cityOptions : [];
|
2017-02-22 09:15:29 +00:00
|
|
|
|
this.isIndeterminate = false;
|
2017-01-16 02:39:24 +00:00
|
|
|
|
},
|
|
|
|
|
handleCheckedCitiesChange(value) {
|
|
|
|
|
let checkedCount = value.length;
|
|
|
|
|
this.checkAll = checkedCount === this.cities.length;
|
|
|
|
|
this.isIndeterminate = checkedCount > 0 && checkedCount < this.cities.length;
|
2016-10-10 16:23:27 +00:00
|
|
|
|
}
|
2016-07-27 06:15:02 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.demo-box.demo-checkbox {
|
|
|
|
|
.checkbox {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
& + .checkbox {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2016-08-26 10:34:54 +00:00
|
|
|
|
## Checkbox 多选框
|
|
|
|
|
一组备选项中进行多选
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
2016-08-26 10:34:54 +00:00
|
|
|
|
### 基础用法
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
2017-02-20 03:39:52 +00:00
|
|
|
|
单独使用可以表示两种状态之间的切换,写在标签中的内容为 checkbox 按钮后的介绍。
|
2016-09-02 08:09:36 +00:00
|
|
|
|
|
2016-08-25 10:24:51 +00:00
|
|
|
|
:::demo 在`el-checkbox`元素中定义`v-model`绑定变量,单一的`checkbox`中,默认绑定变量的值会是`Boolean`,选中为`true`。
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
|
|
|
|
```html
|
2016-08-25 10:24:51 +00:00
|
|
|
|
<template>
|
2016-09-09 04:28:56 +00:00
|
|
|
|
<!-- `checked` 为 true 或 false -->
|
2017-02-22 09:15:29 +00:00
|
|
|
|
<el-checkbox v-model="checked">备选项</el-checkbox>
|
2016-08-25 10:24:51 +00:00
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checked: true
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2016-07-27 06:15:02 +00:00
|
|
|
|
```
|
2016-08-25 10:24:51 +00:00
|
|
|
|
:::
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
2016-12-23 11:36:42 +00:00
|
|
|
|
### 禁用状态
|
2016-09-02 08:09:36 +00:00
|
|
|
|
|
|
|
|
|
多选框不可用状态。
|
|
|
|
|
|
|
|
|
|
::: demo 设置`disabled`属性即可。
|
|
|
|
|
|
|
|
|
|
```html
|
|
|
|
|
<template>
|
2016-10-20 05:43:37 +00:00
|
|
|
|
<el-checkbox v-model="checked1" disabled>备选项1</el-checkbox>
|
|
|
|
|
<el-checkbox v-model="checked2" disabled>备选项</el-checkbox>
|
2016-09-02 08:09:36 +00:00
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checked1: false,
|
|
|
|
|
checked2: true
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2016-08-26 10:34:54 +00:00
|
|
|
|
### 多选框组
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
2016-09-09 04:28:56 +00:00
|
|
|
|
适用于多个勾选框绑定到同一个数组的情景,通过是否勾选来表示这一组选项中选中的项。
|
|
|
|
|
|
2017-02-20 03:39:52 +00:00
|
|
|
|
:::demo `checkbox-group`元素能把多个 checkbox 管理为一组,只需要在 Group 中使用`v-model`绑定`Array`类型的变量即可。 `el-checkbox` 的 `label`属性是该 checkbox 对应的值,若该标签中无内容,则该属性也充当 checkbox 按钮后的介绍。`label`与数组中的元素值相对应,如果存在指定的值则为选中状态,否则为不选中。
|
2016-07-27 06:15:02 +00:00
|
|
|
|
|
|
|
|
|
```html
|
|
|
|
|
<template>
|
2016-08-15 03:59:11 +00:00
|
|
|
|
<el-checkbox-group v-model="checkList">
|
2016-10-20 05:43:37 +00:00
|
|
|
|
<el-checkbox label="复选框 A"></el-checkbox>
|
|
|
|
|
<el-checkbox label="复选框 B"></el-checkbox>
|
|
|
|
|
<el-checkbox label="复选框 C"></el-checkbox>
|
|
|
|
|
<el-checkbox label="禁用" disabled></el-checkbox>
|
|
|
|
|
<el-checkbox label="选中且禁用" disabled></el-checkbox>
|
2016-08-15 03:59:11 +00:00
|
|
|
|
</el-checkbox-group>
|
2016-07-27 06:15:02 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
checkList: ['选中且禁用','复选框 A']
|
2016-08-25 10:24:51 +00:00
|
|
|
|
};
|
2016-07-27 06:15:02 +00:00
|
|
|
|
}
|
2016-08-25 10:24:51 +00:00
|
|
|
|
};
|
2016-07-27 06:15:02 +00:00
|
|
|
|
</script>
|
|
|
|
|
```
|
2016-08-25 10:24:51 +00:00
|
|
|
|
:::
|
|
|
|
|
|
2017-01-16 02:39:24 +00:00
|
|
|
|
### indeterminate 状态
|
|
|
|
|
|
|
|
|
|
`indeterminate` 属性用以表示 checkbox 的不确定状态,一般用于实现全选的效果
|
|
|
|
|
|
|
|
|
|
:::demo
|
|
|
|
|
|
|
|
|
|
```html
|
|
|
|
|
<template>
|
|
|
|
|
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
|
|
<div style="margin: 15px 0;"></div>
|
|
|
|
|
<el-checkbox-group v-model="checkedCities" @change="handleCheckedCitiesChange">
|
2017-04-28 06:03:42 +00:00
|
|
|
|
<el-checkbox v-for="city in cities" :label="city" :key="city">{{city}}</el-checkbox>
|
2017-01-16 02:39:24 +00:00
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
const cityOptions = ['上海', '北京', '广州', '深圳'];
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checkAll: true,
|
2017-02-20 03:39:52 +00:00
|
|
|
|
checkedCities: ['上海', '北京'],
|
2017-01-16 02:39:24 +00:00
|
|
|
|
cities: cityOptions,
|
2017-02-20 03:39:52 +00:00
|
|
|
|
isIndeterminate: true
|
2017-01-16 02:39:24 +00:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleCheckAllChange(event) {
|
|
|
|
|
this.checkedCities = event.target.checked ? cityOptions : [];
|
|
|
|
|
this.isIndeterminate = false;
|
|
|
|
|
},
|
|
|
|
|
handleCheckedCitiesChange(value) {
|
|
|
|
|
let checkedCount = value.length;
|
|
|
|
|
this.checkAll = checkedCount === this.cities.length;
|
|
|
|
|
this.isIndeterminate = checkedCount > 0 && checkedCount < this.cities.length;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2017-04-07 10:36:24 +00:00
|
|
|
|
### 可选项目数量的限制
|
2017-03-22 21:22:00 +00:00
|
|
|
|
|
2017-04-07 10:36:24 +00:00
|
|
|
|
使用 `min` 和 `max` 属性能够限制可以被勾选的项目的数量。
|
2017-03-22 21:22:00 +00:00
|
|
|
|
|
|
|
|
|
:::demo
|
|
|
|
|
|
|
|
|
|
```html
|
|
|
|
|
<template>
|
|
|
|
|
<el-checkbox-group
|
|
|
|
|
v-model="checkedCities1"
|
2017-03-23 08:03:49 +00:00
|
|
|
|
:min="1"
|
|
|
|
|
:max="2">
|
2017-04-28 06:03:42 +00:00
|
|
|
|
<el-checkbox v-for="city in cities" :label="city" :key="city">{{city}}</el-checkbox>
|
2017-03-22 21:22:00 +00:00
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
const cityOptions = ['上海', '北京', '广州', '深圳'];
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checkedCities1: ['上海', '北京'],
|
|
|
|
|
cities: cityOptions
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
```
|
2017-04-21 08:12:38 +00:00
|
|
|
|
|
2017-03-22 21:22:00 +00:00
|
|
|
|
:::
|
2017-04-21 08:12:38 +00:00
|
|
|
|
|
2017-04-23 11:24:20 +00:00
|
|
|
|
### 按钮样式
|
2017-04-21 08:12:38 +00:00
|
|
|
|
|
2017-04-23 11:24:20 +00:00
|
|
|
|
按钮样式的多选组合。
|
2017-04-21 08:12:38 +00:00
|
|
|
|
|
2017-04-23 11:24:20 +00:00
|
|
|
|
:::demo 只需要把`el-checkbox`元素替换为`el-checkbox-button`元素即可。此外,Element 还提供了`size`属性,支持`large`和`small`两种。
|
2017-04-21 08:12:38 +00:00
|
|
|
|
```html
|
|
|
|
|
<template>
|
|
|
|
|
<div style="margin: 15px 0;"></div>
|
|
|
|
|
<el-checkbox-group v-model="checkboxGroup1">
|
2017-04-28 06:03:42 +00:00
|
|
|
|
<el-checkbox-button v-for="city in cities" :label="city" :key="city">{{city}}</el-checkbox-button>
|
2017-04-21 08:12:38 +00:00
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
<div style="margin: 15px 0;"></div>
|
|
|
|
|
<el-checkbox-group v-model="checkboxGroup2" size="small">
|
2017-04-28 06:03:42 +00:00
|
|
|
|
<el-checkbox-button v-for="city in cities" :label="city" :disabled="city === '深圳'" :key="city">{{city}}</el-checkbox-button>
|
2017-04-21 08:12:38 +00:00
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
<div style="margin: 15px 0;"></div>
|
|
|
|
|
<el-checkbox-group v-model="checkboxGroup3" size="large" fill="#324057" text-color="#a4aebd" :min="1" :max="3">
|
2017-04-28 06:03:42 +00:00
|
|
|
|
<el-checkbox-button v-for="city in cities" :label="city" :key="city">{{city}}</el-checkbox-button>
|
2017-04-21 08:12:38 +00:00
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
const cityOptions = ['上海', '北京', '广州', '深圳'];
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
checkboxGroup1: ['上海'],
|
|
|
|
|
checkboxGroup2: ['北京'],
|
|
|
|
|
checkboxGroup3: ['广州'],
|
|
|
|
|
cities: cityOptions
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
2016-08-26 10:34:54 +00:00
|
|
|
|
### Checkbox Attributes
|
2016-08-15 03:59:11 +00:00
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
|
|
|
|
|---------- |-------- |---------- |------------- |-------- |
|
2016-10-31 08:49:42 +00:00
|
|
|
|
| label | 选中状态的值(只有在`checkbox-group`或者绑定对象类型为`array`时有效)| string | — | — |
|
|
|
|
|
| true-label | 选中时的值 | string, number | — | — |
|
2016-09-02 05:56:47 +00:00
|
|
|
|
| false-label | 没有选中时的值 | string, number | — | — |
|
2016-11-14 04:16:13 +00:00
|
|
|
|
| name | 原生 name 属性 | string | — | — |
|
2016-09-02 05:56:47 +00:00
|
|
|
|
| disabled | 按钮禁用 | boolean | — | false |
|
2016-10-10 16:23:27 +00:00
|
|
|
|
| checked | 当前是否勾选 | boolean | — | false |
|
|
|
|
|
| indeterminate | 设置 indeterminate 状态,只负责样式控制 | boolean | — | false |
|
2016-08-15 03:59:11 +00:00
|
|
|
|
|
2017-04-23 11:24:20 +00:00
|
|
|
|
### Checkbox-group Attributes
|
2017-04-21 08:12:38 +00:00
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
2017-03-23 08:03:49 +00:00
|
|
|
|
|---------- |-------- |---------- |------------- |-------- |
|
2017-04-21 08:12:38 +00:00
|
|
|
|
| size | Checkbox 按钮组尺寸 | string | large, small | — |
|
|
|
|
|
| fill | 按钮激活时的填充色和边框色 | string | — | #20a0ff |
|
|
|
|
|
| text-color | 按钮激活时的文本颜色 | string | — | #ffffff |
|
2017-06-15 13:30:12 +00:00
|
|
|
|
| min | 可被勾选的 checkbox 的最小数量 | number | — | — |
|
|
|
|
|
| max | 可被勾选的 checkbox 的最大数量 | number | — | — |
|
2017-03-23 08:03:49 +00:00
|
|
|
|
|
2017-07-20 06:30:56 +00:00
|
|
|
|
### Checkbox Events
|
2016-08-15 03:59:11 +00:00
|
|
|
|
| 事件名称 | 说明 | 回调参数 |
|
|
|
|
|
|---------- |-------- |---------- |
|
2016-10-10 16:23:27 +00:00
|
|
|
|
| change | 当绑定值变化时触发的事件 | event 事件对象 |
|