Lindy 8b38ccf364 feat(GoodsActionButton): add plain attributes (#2559)
* feat(GoodsActionButton): add plain attributes

* feat(GoodsActionButton): classnames normalize

* feat(GoodsActionButton): code optimization
2019-12-20 10:38:26 +08:00

54 lines
1.1 KiB
TypeScript

import { VantComponent } from '../common/component';
import { link } from '../mixins/link';
import { button } from '../mixins/button';
import { openType } from '../mixins/open-type';
import { Weapp } from 'definitions/weapp';
VantComponent({
mixins: [link, button, openType],
relation: {
type: 'ancestor',
name: 'goods-action',
linked(parent) {
this.parent = parent;
}
},
props: {
text: String,
color: String,
loading: Boolean,
disabled: Boolean,
plain: Boolean,
type: {
type: String,
value: 'danger'
}
},
mounted() {
this.updateStyle();
},
methods: {
onClick(event: Weapp.Event) {
this.$emit('click', event.detail);
this.jumpLink();
},
updateStyle() {
const { children = [] } = this.parent;
const { length } = children;
const index = children.indexOf(this);
let rightBorderLess = false;
if (length > 1) {
rightBorderLess = index !== length - 1;
}
this.setData({
isFirst: index === 0,
rightBorderLess,
isLast: index === length - 1
});
}
}
});