mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Cascader): cascader__option--select not bind
This commit is contained in:
parent
e46d11f837
commit
7160828cf1
@ -37,7 +37,7 @@
|
|||||||
wx:for="{{ tab.options }}"
|
wx:for="{{ tab.options }}"
|
||||||
wx:for-item="option"
|
wx:for-item="option"
|
||||||
wx:key="index"
|
wx:key="index"
|
||||||
class="{{ option.className }} {{ utils.optionClass(tab, textKey, option) }}"
|
class="{{ option.className }} {{ utils.optionClass(tab, valueKey, option) }}"
|
||||||
style="{{ utils.optionStyle({ tab, valueKey, option, activeColor }) }}"
|
style="{{ utils.optionStyle({ tab, valueKey, option, activeColor }) }}"
|
||||||
data-option="{{ option }}"
|
data-option="{{ option }}"
|
||||||
data-tab-index="{{ tabIndex }}"
|
data-tab-index="{{ tabIndex }}"
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
var utils = require('../wxs/utils.wxs');
|
var utils = require('../wxs/utils.wxs');
|
||||||
var style = require('../wxs/style.wxs');
|
var style = require('../wxs/style.wxs');
|
||||||
|
|
||||||
function isSelected(tab, textKey, option) {
|
function isSelected(tab, valueKey, option) {
|
||||||
return tab.selected && tab.selected[textKey] === option[textKey]
|
return tab.selected && tab.selected[valueKey] === option[valueKey]
|
||||||
}
|
}
|
||||||
|
|
||||||
function optionClass(tab, textKey, option) {
|
function optionClass(tab, valueKey, option) {
|
||||||
return utils.bem('cascader__option', { selected: isSelected({ tab, textKey, option }), disabled: option.disabled })
|
return utils.bem('cascader__option', { selected: isSelected(tab, valueKey, option), disabled: option.disabled })
|
||||||
}
|
}
|
||||||
|
|
||||||
function optionStyle(data) {
|
function optionStyle(data) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user