vant-weapp/dist/btn/index.js
2018-05-13 23:31:54 +08:00

59 lines
1007 B
JavaScript

const nativeButtonBehavior = require('./native-button-behaviors');
Component({
externalClasses: ['custom-class'],
behaviors: [nativeButtonBehavior],
relations: {
'../btn-group/index': {
type: 'parent',
linked() {
this.setData({ inGroup: true });
},
unlinked() {
this.setData({ inGroup: false });
}
}
},
properties: {
type: {
type: String,
value: '',
},
size: {
type: String,
value: '',
},
plain: {
type: Boolean,
value: false,
},
disabled: {
type: Boolean,
value: false,
},
loading: {
type: Boolean,
value: false,
}
},
data: {
inGroup: false,
isLast: false
},
methods: {
handleTap() {
if (this.data.disabled) {
this.triggerEvent('disabledclick')
return;
}
this.triggerEvent('btnclick');
},
switchLastButtonStatus(isLast = false) {
this.setData({ isLast });
}
}
});