12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view>
- <van-button
- :id="id"
- :lang="lang"
- :type="type"
- :color="color"
- :plain="plain"
- :loading="loading"
- :disabled="disabled"
- :open-type="openType"
- :class="utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])"
- custom-class="van-goods-action-button__inner"
- :business-id="businessId"
- :session-from="sessionFrom"
- :app-parameter="appParameter"
- :send-message-img="sendMessageImg"
- :send-message-path="sendMessagePath"
- :show-message-card="showMessageCard"
- :send-message-title="sendMessageTitle"
- @click="onClick($event, { tagId: id })"
- @error="bindError($event, { tagId: id })"
- @contact="bindContact($event, { tagId: id })"
- @opensetting="bindOpenSetting($event, { tagId: id })"
- @getuserinfo="bindGetUserInfo($event, { tagId: id })"
- @getphonenumber="bindGetPhoneNumber($event, { tagId: id })"
- @launchapp="bindLaunchApp($event, { tagId: id })"
- >
- {{ text }}
- <slot></slot>
- </van-button>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var link_1 = require('../mixins/link');
- var button_1 = require('../mixins/button');
- var open_type_1 = require('../mixins/open-type');
- component_1.VantComponent({
- mixins: [link_1.link, button_1.button, open_type_1.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'
- }
- },
- methods: {
- onClick: function (event) {
- this.$emit('click', event.detail);
- this.jumpLink();
- },
- updateStyle: function () {
- if (this.parent == null) {
- return;
- }
- var _a = this.parent.children;
- var children = _a === void 0 ? [] : _a;
- var length = children.length;
- var index = children.indexOf(this);
- this.setData({
- isFirst: index === 0,
- isLast: index === length - 1
- });
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|