初始
This commit is contained in:
44
node_modules/@vant/weapp/dist/goods-action-button/index.js
generated
vendored
Normal file
44
node_modules/@vant/weapp/dist/goods-action-button/index.js
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
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,
|
||||
size: {
|
||||
type: String,
|
||||
value: 'normal',
|
||||
},
|
||||
loading: Boolean,
|
||||
disabled: Boolean,
|
||||
plain: Boolean,
|
||||
type: {
|
||||
type: String,
|
||||
value: 'danger',
|
||||
},
|
||||
customStyle: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
onClick(event) {
|
||||
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,
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user