mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
651 B
XML
24 lines
651 B
XML
var utils = require('../wxs/utils.wxs');
|
|
var style = require('../wxs/style.wxs');
|
|
|
|
function isSelected(tab, valueKey, option) {
|
|
return tab.selected && tab.selected[valueKey] === option[valueKey]
|
|
}
|
|
|
|
function optionClass(tab, valueKey, option) {
|
|
return utils.bem('cascader__option', { selected: isSelected(tab, valueKey, option), disabled: option.disabled })
|
|
}
|
|
|
|
function optionStyle(data) {
|
|
var color = data.option.color || (isSelected(data.tab, data.valueKey, data.option) ? data.activeColor : undefined);
|
|
return style({
|
|
color
|
|
});
|
|
}
|
|
|
|
|
|
module.exports = {
|
|
isSelected: isSelected,
|
|
optionClass: optionClass,
|
|
optionStyle: optionStyle,
|
|
}; |