index.vue 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <view>
  3. <van-button
  4. :id="id"
  5. :lang="lang"
  6. :type="type"
  7. :color="color"
  8. :plain="plain"
  9. :loading="loading"
  10. :disabled="disabled"
  11. :open-type="openType"
  12. :class="utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])"
  13. custom-class="van-goods-action-button__inner"
  14. :business-id="businessId"
  15. :session-from="sessionFrom"
  16. :app-parameter="appParameter"
  17. :send-message-img="sendMessageImg"
  18. :send-message-path="sendMessagePath"
  19. :show-message-card="showMessageCard"
  20. :send-message-title="sendMessageTitle"
  21. @click="onClick($event, { tagId: id })"
  22. @error="bindError($event, { tagId: id })"
  23. @contact="bindContact($event, { tagId: id })"
  24. @opensetting="bindOpenSetting($event, { tagId: id })"
  25. @getuserinfo="bindGetUserInfo($event, { tagId: id })"
  26. @getphonenumber="bindGetPhoneNumber($event, { tagId: id })"
  27. @launchapp="bindLaunchApp($event, { tagId: id })"
  28. >
  29. {{ text }}
  30. <slot></slot>
  31. </van-button>
  32. </view>
  33. </template>
  34. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  35. <script>
  36. 'use strict';
  37. Object.defineProperty(exports, '__esModule', {
  38. value: true
  39. });
  40. var component_1 = require('../common/component');
  41. var link_1 = require('../mixins/link');
  42. var button_1 = require('../mixins/button');
  43. var open_type_1 = require('../mixins/open-type');
  44. component_1.VantComponent({
  45. mixins: [link_1.link, button_1.button, open_type_1.openType],
  46. relation: {
  47. type: 'ancestor',
  48. name: 'goods-action',
  49. current: 'goods-action-button'
  50. },
  51. props: {
  52. text: String,
  53. color: String,
  54. loading: Boolean,
  55. disabled: Boolean,
  56. plain: Boolean,
  57. type: {
  58. type: String,
  59. value: 'danger'
  60. }
  61. },
  62. methods: {
  63. onClick: function (event) {
  64. this.$emit('click', event.detail);
  65. this.jumpLink();
  66. },
  67. updateStyle: function () {
  68. if (this.parent == null) {
  69. return;
  70. }
  71. var _a = this.parent.children;
  72. var children = _a === void 0 ? [] : _a;
  73. var length = children.length;
  74. var index = children.indexOf(this);
  75. this.setData({
  76. isFirst: index === 0,
  77. isLast: index === length - 1
  78. });
  79. }
  80. }
  81. });
  82. </script>
  83. <style>
  84. @import './index.css';
  85. </style>