[improvement] Checkbox: optimize performance (#1057)

This commit is contained in:
neverland 2018-12-11 21:07:19 +08:00 committed by GitHub
parent 97476fec76
commit b45b601b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 13 deletions

View File

@ -16,9 +16,9 @@ VantComponent({
},
props: {
max: Number,
value: Array,
disabled: Boolean,
max: Number
disabled: Boolean
},
watch: {

View File

@ -23,16 +23,6 @@ VantComponent({
}
},
computed: {
iconStyle(): string {
const { value, disabled, checkedColor } = this.data;
if (checkedColor && value && !disabled) {
return `border-color: ${checkedColor}; background-color: ${checkedColor}`;
}
return '';
}
},
methods: {
emitChange(value) {
const parent = this.getRelationNodes('../checkbox-group/index')[0];

View File

@ -7,7 +7,7 @@
wx:else
name="success"
class="{{ utils.bem('checkbox__icon', [shape, { disabled, checked: value }]) }}"
style="{{ iconStyle }}"
style="{{ checkedColor && value && !disabled ? 'border-color:' + checkedColor + '; background-color:' + checkedColor : '' }}"
custom-class="icon-class"
custom-style="line-height: 20px;"
/>