index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <view>
  3. <button
  4. :id="id"
  5. :data-detail="dataset"
  6. :class="
  7. 'custom-class ' +
  8. utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) +
  9. ' ' +
  10. (hairline ? 'van-hairline--surround' : '')
  11. "
  12. hover-class="van-button--active hover-class"
  13. :lang="lang"
  14. :form-type="formType"
  15. :style="baseStyle + ' ' + customStyle"
  16. :open-type="disabled ? '' : openType"
  17. :business-id="businessId"
  18. :session-from="sessionFrom"
  19. :send-message-title="sendMessageTitle"
  20. :send-message-path="sendMessagePath"
  21. :send-message-img="sendMessageImg"
  22. :show-message-card="showMessageCard"
  23. :app-parameter="appParameter"
  24. :aria-label="ariaLabel"
  25. @tap="parseEventDynamicCode($event, !disabled ? 'onClick' : 'noop')"
  26. @getuserinfo="bindGetUserInfo"
  27. @contact="bindContact"
  28. @getphonenumber="bindGetPhoneNumber"
  29. @error="bindError"
  30. @launchapp="bindLaunchApp"
  31. @opensetting="bindOpenSetting"
  32. >
  33. <block v-if="loading">
  34. <van-loading custom-class="loading-class" :size="loadingSize" :type="loadingType" :color="loadingColor(type, color, plain)" />
  35. <view v-if="loadingText" class="van-button__loading-text">
  36. {{ loadingText }}
  37. </view>
  38. </block>
  39. <block v-else>
  40. <van-icon v-if="icon" size="1.2em" :name="icon" :class-prefix="classPrefix" class="van-button__icon" custom-style="line-height: inherit;" />
  41. <view class="van-button__text">
  42. <slot />
  43. </view>
  44. </block>
  45. </button>
  46. </view>
  47. </template>
  48. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  49. <script module="loadingColor" lang="wxs">
  50. function get(type, color,plain) {
  51. if(plain) {
  52. return color ? color: '#c9c9c9';
  53. }
  54. if(type === 'default') {
  55. return '#c9c9c9';
  56. }
  57. return 'white';
  58. }
  59. module.exports = get;
  60. </script>
  61. <script>
  62. 'use strict';
  63. Object.defineProperty(exports, '__esModule', {
  64. value: true
  65. });
  66. var component_1 = require('../common/component');
  67. var button_1 = require('../mixins/button');
  68. var open_type_1 = require('../mixins/open-type');
  69. var version_1 = require('../common/version');
  70. var mixins = [button_1.button, open_type_1.openType];
  71. if (version_1.canIUseFormFieldButton()) {
  72. mixins.push('wx://form-field-button');
  73. }
  74. component_1.VantComponent({
  75. mixins: mixins,
  76. classes: ['hover-class', 'loading-class'],
  77. data: {
  78. baseStyle: ''
  79. },
  80. props: {
  81. formType: String,
  82. icon: String,
  83. classPrefix: {
  84. type: String,
  85. value: 'van-icon'
  86. },
  87. plain: Boolean,
  88. block: Boolean,
  89. round: Boolean,
  90. square: Boolean,
  91. loading: Boolean,
  92. hairline: Boolean,
  93. disabled: Boolean,
  94. loadingText: String,
  95. customStyle: String,
  96. loadingType: {
  97. type: String,
  98. value: 'circular'
  99. },
  100. type: {
  101. type: String,
  102. value: 'default'
  103. },
  104. dataset: null,
  105. size: {
  106. type: String,
  107. value: 'normal'
  108. },
  109. loadingSize: {
  110. type: String,
  111. value: '20px'
  112. },
  113. color: {
  114. type: String,
  115. observer: function (color) {
  116. var style = '';
  117. if (color) {
  118. style += 'color: ' + (this.plain ? color : 'white') + ';';
  119. if (!this.plain) {
  120. // Use background instead of backgroundColor to make linear-gradient work
  121. style += 'background: ' + color + ';';
  122. }
  123. // hide border when color is linear-gradient
  124. if (color.indexOf('gradient') !== -1) {
  125. style += 'border: 0;';
  126. } else {
  127. style += 'border-color: ' + color + ';';
  128. }
  129. }
  130. if (style !== this.baseStyle) {
  131. this.setData({
  132. baseStyle: style
  133. });
  134. }
  135. }
  136. }
  137. },
  138. methods: {
  139. onClick: function () {
  140. if (!this.loading) {
  141. this.$emit('click');
  142. }
  143. },
  144. noop: function () {}
  145. }
  146. });
  147. </script>
  148. <style>
  149. @import './index.css';
  150. </style>