index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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/dist/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. import { VantComponent } from '../common/component';
  63. import { button } from '../mixins/button';
  64. import { openType } from '../mixins/open-type';
  65. import { canIUseFormFieldButton } from '../common/version';
  66. const mixins = [button, openType];
  67. if (canIUseFormFieldButton()) {
  68. mixins.push('wx://form-field-button');
  69. }
  70. export default {
  71. data() {
  72. return {
  73. baseStyle: '',
  74. id: '',
  75. lang: '',
  76. openType: '',
  77. businessId: '',
  78. sessionFrom: '',
  79. sendMessageTitle: '',
  80. sendMessagePath: '',
  81. sendMessageImg: '',
  82. showMessageCard: '',
  83. appParameter: '',
  84. ariaLabel: ''
  85. };
  86. },
  87. mixins,
  88. classes: ['hover-class', 'loading-class'],
  89. props: {
  90. formType: String,
  91. icon: String,
  92. classPrefix: {
  93. type: String,
  94. default: 'van-icon'
  95. },
  96. plain: Boolean,
  97. block: Boolean,
  98. round: Boolean,
  99. square: Boolean,
  100. loading: Boolean,
  101. hairline: Boolean,
  102. disabled: Boolean,
  103. loadingText: String,
  104. customStyle: String,
  105. loadingType: {
  106. type: String,
  107. default: 'circular'
  108. },
  109. type: {
  110. type: String,
  111. default: 'default'
  112. },
  113. dataset: null,
  114. size: {
  115. type: String,
  116. default: 'normal'
  117. },
  118. loadingSize: {
  119. type: String,
  120. default: '20px'
  121. },
  122. color: {
  123. type: String
  124. }
  125. },
  126. methods: {
  127. onClick() {
  128. if (!this.loading) {
  129. this.$emit('click');
  130. }
  131. },
  132. noop() {},
  133. bindGetUserInfo() {
  134. console.log('占位:函数 bindGetUserInfo 未声明');
  135. },
  136. bindContact() {
  137. console.log('占位:函数 bindContact 未声明');
  138. },
  139. bindGetPhoneNumber() {
  140. console.log('占位:函数 bindGetPhoneNumber 未声明');
  141. },
  142. bindError() {
  143. console.log('占位:函数 bindError 未声明');
  144. },
  145. bindLaunchApp() {
  146. console.log('占位:函数 bindLaunchApp 未声明');
  147. },
  148. bindOpenSetting() {
  149. console.log('占位:函数 bindOpenSetting 未声明');
  150. }
  151. },
  152. watch: {
  153. color: {
  154. handler: function (color) {
  155. let style = '';
  156. if (color) {
  157. style += `color: ${this.plain ? color : 'white'};`;
  158. if (!this.plain) {
  159. // Use background instead of backgroundColor to make linear-gradient work
  160. style += `background: ${color};`;
  161. }
  162. // hide border when color is linear-gradient
  163. if (color.indexOf('gradient') !== -1) {
  164. style += 'border: 0;';
  165. } else {
  166. style += `border-color: ${color};`;
  167. }
  168. }
  169. if (style !== this.baseStyle) {
  170. this.setData({
  171. baseStyle: style
  172. });
  173. }
  174. },
  175. immediate: true
  176. }
  177. }
  178. };
  179. </script>
  180. <style>
  181. @import './index.css';
  182. </style>