feat(AddressList): add event param for click-item (#12748)

This commit is contained in:
neverland 2024-03-31 17:34:13 +08:00 committed by GitHub
parent 60a0ac146a
commit b332c1643a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 8 additions and 7 deletions

View File

@ -54,7 +54,8 @@ export default defineComponent({
const onEdit = () =>
emit(disabled ? 'editDisabled' : 'edit', item, index);
const onClick = () => emit('clickItem', item, index);
const onClick = (event: MouseEvent) =>
emit('clickItem', item, index, { event });
const onSelect = () => {
emit(disabled ? 'selectDisabled' : 'select', item, index);

View File

@ -39,11 +39,11 @@ export default defineComponent({
emits: ['edit', 'click', 'select'],
setup(props, { slots, emit }) {
const onClick = () => {
const onClick = (event: MouseEvent) => {
if (props.switchable) {
emit('select');
}
emit('click');
emit('click', event);
};
const renderRightIcon = () => (
@ -53,7 +53,7 @@ export default defineComponent({
onClick={(event) => {
event.stopPropagation();
emit('edit');
emit('click');
emit('click', event);
}}
/>
);

View File

@ -102,7 +102,7 @@ export default {
| select | Emitted when an address is selected | _item: Address, index: number_ |
| edit-disabled | Emitted when the edit icon of disabled address is clicked | _item: Address, index: number_ |
| select-disabled | Emitted when a disabled address is selected | _item: Address, index: number_ |
| click-item | Emitted when an address item is clicked | _item: Address, index: number_ |
| click-item | Emitted when an address item is clicked | _item: Address, index: number, { event }_ |
### Data Structure of Address

View File

@ -102,7 +102,7 @@ export default {
| select | 切换选中的地址时触发 | _item: AddressListAddress, index: number_ |
| edit-disabled | 编辑不可配送的地址时触发 | _item: AddressListAddress, index: number_ |
| select-disabled | 选中不可配送的地址时触发 | _item: AddressListAddress, index: number_ |
| click-item | 点击任意地址时触发 | _item: AddressListAddress, index: number_ |
| click-item | 点击任意地址时触发 | _item: AddressListAddress, index: number, { event }_ |
### AddressListAddress 数据结构

View File

@ -48,7 +48,7 @@ test('should emit clickItem event when item is clicked', () => {
wrapper.find('.van-address-item').trigger('click');
expect(wrapper.emitted('clickItem')![0]).toEqual([list[0], 0]);
expect(wrapper.emitted('clickItem')![0].slice(0, 2)).toEqual([list[0], 0]);
});
test('should render tag slot correctly', () => {