index.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view>
  3. <van-button
  4. square
  5. :id="id"
  6. size="large"
  7. :lang="lang"
  8. :loading="loading"
  9. :disabled="disabled"
  10. :open-type="openType"
  11. :business-id="businessId"
  12. custom-class="van-goods-action-icon"
  13. :session-from="sessionFrom"
  14. :app-parameter="appParameter"
  15. :send-message-img="sendMessageImg"
  16. :send-message-path="sendMessagePath"
  17. :show-message-card="showMessageCard"
  18. :send-message-title="sendMessageTitle"
  19. @click="onClick($event, { tagId: id })"
  20. @error="bindError($event, { tagId: id })"
  21. @contact="bindContact($event, { tagId: id })"
  22. @opensetting="bindOpenSetting($event, { tagId: id })"
  23. @getuserinfo="bindGetUserInfo($event, { tagId: id })"
  24. @getphonenumber="bindGetPhoneNumber($event, { tagId: id })"
  25. @launchapp="bindLaunchApp($event, { tagId: id })"
  26. >
  27. <view class="van-goods-action-icon__content">
  28. <van-icon v-if="icon" size="20px" :name="icon" :dot="dot" :info="info" class="van-goods-action-icon__icon" custom-class="icon-class" />
  29. <slot name="icon" />
  30. <text class="text-class">{{ text }}</text>
  31. </view>
  32. </van-button>
  33. </view>
  34. </template>
  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. classes: ['icon-class', 'text-class'],
  46. mixins: [link_1.link, button_1.button, open_type_1.openType],
  47. props: {
  48. text: String,
  49. dot: Boolean,
  50. info: String,
  51. icon: String,
  52. disabled: Boolean,
  53. loading: Boolean
  54. },
  55. methods: {
  56. onClick: function (event) {
  57. this.$emit('click', event.detail);
  58. this.jumpLink();
  59. }
  60. }
  61. });
  62. </script>
  63. <style>
  64. @import './index.css';
  65. </style>