mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
import { VantComponent } from '../common/component';
|
|
import { button } from '../mixins/button';
|
|
import { openType } from '../mixins/open-type';
|
|
VantComponent({
|
|
classes: ['loading-class'],
|
|
mixins: [button, openType],
|
|
props: {
|
|
plain: Boolean,
|
|
block: Boolean,
|
|
round: Boolean,
|
|
square: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
type: {
|
|
type: String,
|
|
value: 'default'
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: 'normal'
|
|
}
|
|
},
|
|
computed: {
|
|
classes: function classes() {
|
|
var _this$data = this.data,
|
|
type = _this$data.type,
|
|
size = _this$data.size,
|
|
block = _this$data.block,
|
|
plain = _this$data.plain,
|
|
round = _this$data.round,
|
|
square = _this$data.square,
|
|
loading = _this$data.loading,
|
|
disabled = _this$data.disabled;
|
|
return this.classNames("van-button--" + type, "van-button--" + size, {
|
|
'van-button--block': block,
|
|
'van-button--round': round,
|
|
'van-button--plain': plain,
|
|
'van-button--square': square,
|
|
'van-button--loading': loading,
|
|
'van-button--disabled': disabled,
|
|
'van-button--unclickable': disabled || loading
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
onClick: function onClick() {
|
|
if (!this.data.disabled && !this.data.loading) {
|
|
this.$emit('click');
|
|
}
|
|
}
|
|
}
|
|
}); |