mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] AddressList: select-disabled event not triggered
This commit is contained in:
parent
75e91347c6
commit
32dbb7904b
@ -36,11 +36,11 @@ function AddressItem(
|
||||
) {
|
||||
const { disabled, switchable } = props;
|
||||
|
||||
const onSelect = () => {
|
||||
if (props.switchable) {
|
||||
function onSelect() {
|
||||
if (switchable) {
|
||||
emit(ctx, 'select');
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
const renderRightIcon = () => (
|
||||
<Icon
|
||||
@ -60,7 +60,7 @@ function AddressItem(
|
||||
<div class={bem('address')}>{data.address}</div>
|
||||
];
|
||||
|
||||
return props.switchable ? (
|
||||
return switchable && !disabled ? (
|
||||
<Radio name={data.id} onClick={onSelect}>
|
||||
{Info}
|
||||
</Radio>
|
||||
@ -73,7 +73,7 @@ function AddressItem(
|
||||
<Cell
|
||||
class={bem({ disabled, unswitchable: !switchable })}
|
||||
valueClass={bem('value')}
|
||||
isLink={!disabled && switchable}
|
||||
clickable={switchable && !disabled}
|
||||
scopedSlots={{
|
||||
default: renderContent,
|
||||
'right-icon': renderRightIcon
|
||||
|
@ -35,7 +35,7 @@ function AddressList(
|
||||
data={item}
|
||||
key={item.id}
|
||||
disabled={disabled}
|
||||
switchable={props.switchable && !disabled}
|
||||
switchable={props.switchable}
|
||||
onSelect={() => {
|
||||
emit(ctx, disabled ? 'select-disabled' : 'select', item, index);
|
||||
}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user