vant-weapp/dist/cell/index.js
2018-08-22 10:32:27 +08:00

49 lines
811 B
JavaScript

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