index.js 939 Bytes
Newer Older
李嘉林 committed
1 2 3 4 5
import { VantComponent } from '../common/component';
import { link } from '../mixins/link';
import { button } from '../mixins/button';
import { openType } from '../mixins/open-type';
VantComponent({
程默 committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  mixins: [link, button, openType],
  relation: {
    type: 'ancestor',
    name: 'goods-action',
    current: 'goods-action-button',
  },
  props: {
    text: String,
    color: String,
    loading: Boolean,
    disabled: Boolean,
    plain: Boolean,
    type: {
      type: String,
      value: 'danger',
李嘉林 committed
21
    },
程默 committed
22 23 24 25 26
  },
  methods: {
    onClick(event) {
      this.$emit('click', event.detail);
      this.jumpLink();
李嘉林 committed
27
    },
程默 committed
28 29 30 31 32 33 34 35 36 37 38
    updateStyle() {
      if (this.parent == null) {
        return;
      }
      const { children = [] } = this.parent;
      const { length } = children;
      const index = children.indexOf(this);
      this.setData({
        isFirst: index === 0,
        isLast: index === length - 1,
      });
李嘉林 committed
39
    },
程默 committed
40
  },
李嘉林 committed
41
});