2018-08-07 15:10:21 +08:00

29 lines
622 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
var _relations;
var CHECKBOX_PATH = '../checkbox/index';
Component({
relations: (_relations = {}, _relations[CHECKBOX_PATH] = {
type: 'child',
linked: function linked() {
this.updateChildren(CHECKBOX_PATH);
}
}, _relations),
data: {
elementUpdateTimeout: 0
},
methods: {
updateChildren: function updateChildren(childPath) {
// 把checkbox标记为在group中设置不同样式
var elements = this.getRelationNodes(childPath);
elements.forEach(function (checkbox, index) {
checkbox.updateData({ isInGroup: true });
});
}
}
});