mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
59 lines
1007 B
JavaScript
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 });
|
|
}
|
|
}
|
|
});
|