mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* chore(open-type): merge open type mixin into button mixin * chore(button): shorten open type method names * feat(open-type): support getUserProfile
44 lines
863 B
TypeScript
44 lines
863 B
TypeScript
import { VantComponent } from '../common/component';
|
|
import { useParent } from '../common/relation';
|
|
import { button } from '../mixins/button';
|
|
import { link } from '../mixins/link';
|
|
|
|
VantComponent({
|
|
mixins: [link, button],
|
|
|
|
relation: useParent('goods-action'),
|
|
|
|
props: {
|
|
text: String,
|
|
color: String,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
plain: Boolean,
|
|
type: {
|
|
type: String,
|
|
value: 'danger',
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
onClick(event: WechatMiniprogram.CustomEvent) {
|
|
this.$emit('click', event.detail);
|
|
this.jumpLink();
|
|
},
|
|
|
|
updateStyle() {
|
|
if (this.parent == null) {
|
|
return;
|
|
}
|
|
|
|
const { index } = this;
|
|
const { children = [] } = this.parent;
|
|
|
|
this.setData({
|
|
isFirst: index === 0,
|
|
isLast: index === children.length - 1,
|
|
});
|
|
},
|
|
},
|
|
});
|