vant-weapp/dist/mixins/open-type.js
2019-02-06 20:51:51 +08:00

25 lines
721 B
JavaScript

export var openType = Behavior({
properties: {
openType: String
},
methods: {
bindGetUserInfo: function bindGetUserInfo(event) {
this.$emit('getuserinfo', event.detail);
},
bindContact: function bindContact(event) {
this.$emit('contact', event.detail);
},
bindGetPhoneNumber: function bindGetPhoneNumber(event) {
this.$emit('getphonenumber', event.detail);
},
bindError: function bindError(event) {
this.$emit('error', event.detail);
},
bindLaunchApp: function bindLaunchApp(event) {
this.$emit('launchapp', event.detail);
},
bindOpenSetting: function bindOpenSetting(event) {
this.$emit('opensetting', event.detail);
}
}
});