1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| var component_1 = require("../common/component");
| var relation_1 = require("../common/relation");
| var button_1 = require("../mixins/button");
| var link_1 = require("../mixins/link");
| (0, component_1.VantComponent)({
| mixins: [link_1.link, button_1.button],
| relation: (0, relation_1.useParent)('goods-action'),
| props: {
| text: String,
| color: String,
| loading: Boolean,
| disabled: Boolean,
| plain: Boolean,
| type: {
| type: String,
| value: 'danger',
| },
| },
| methods: {
| onClick: function (event) {
| this.$emit('click', event.detail);
| this.jumpLink();
| },
| updateStyle: function () {
| if (this.parent == null) {
| return;
| }
| var index = this.index;
| var _a = this.parent.children, children = _a === void 0 ? [] : _a;
| this.setData({
| isFirst: index === 0,
| isLast: index === children.length - 1,
| });
| },
| },
| });
|
|