You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
import { VantComponent } from '../common/component'; |
|
import { button } from '../mixins/button'; |
|
VantComponent({ |
|
classes: ['list-class'], |
|
mixins: [button], |
|
props: { |
|
show: Boolean, |
|
title: String, |
|
cancelText: String, |
|
description: String, |
|
round: { |
|
type: Boolean, |
|
value: true, |
|
}, |
|
zIndex: { |
|
type: Number, |
|
value: 100, |
|
}, |
|
actions: { |
|
type: Array, |
|
value: [], |
|
}, |
|
overlay: { |
|
type: Boolean, |
|
value: true, |
|
}, |
|
closeOnClickOverlay: { |
|
type: Boolean, |
|
value: true, |
|
}, |
|
closeOnClickAction: { |
|
type: Boolean, |
|
value: true, |
|
}, |
|
safeAreaInsetBottom: { |
|
type: Boolean, |
|
value: true, |
|
}, |
|
rootPortal: { |
|
type: Boolean, |
|
value: false, |
|
}, |
|
}, |
|
methods: { |
|
onSelect(event) { |
|
const { index } = event.currentTarget.dataset; |
|
const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data; |
|
const item = actions[index]; |
|
if (item) { |
|
this.$emit('select', item); |
|
if (closeOnClickAction) { |
|
this.onClose(); |
|
} |
|
if (item.openType === 'getUserInfo' && canIUseGetUserProfile) { |
|
wx.getUserProfile({ |
|
desc: item.getUserProfileDesc || ' ', |
|
complete: (userProfile) => { |
|
this.$emit('getuserinfo', userProfile); |
|
}, |
|
}); |
|
} |
|
} |
|
}, |
|
onCancel() { |
|
this.$emit('cancel'); |
|
}, |
|
onClose() { |
|
this.$emit('close'); |
|
}, |
|
onClickOverlay() { |
|
this.$emit('click-overlay'); |
|
this.onClose(); |
|
}, |
|
}, |
|
});
|
|
|