2018-07-31 16:05:30 +08:00

46 lines
732 B
JavaScript

Component({
externalClasses: [
'custom-class',
'title-class',
'label-class',
'value-class',
'left-icon-class',
'right-icon-class'
],
options: {
multipleSlots: true
},
properties: {
title: null,
value: null,
url: String,
icon: String,
label: String,
center: Boolean,
isLink: Boolean,
required: Boolean,
clickable: Boolean,
arrowDirection: String,
linkType: {
type: String,
value: 'navigateTo'
},
border: {
type: Boolean,
value: true
}
},
methods: {
onTap() {
this.triggerEvent('tap');
const { url } = this.data;
if (url) {
wx[this.data.linkType]({ url });
}
}
}
});