index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view>
  3. <van-popup
  4. :show="show"
  5. position="bottom"
  6. :round="round"
  7. :z-index="zIndex"
  8. :overlay="overlay"
  9. custom-class="van-action-sheet"
  10. :safe-area-inset-bottom="safeAreaInsetBottom"
  11. :close-on-click-overlay="closeOnClickOverlay"
  12. @close="onClickOverlay"
  13. >
  14. <view v-if="title" class="van-hairline--bottom van-action-sheet__header">
  15. {{ title }}
  16. <van-icon name="close" custom-class="van-action-sheet__close" @click="onClose" />
  17. </view>
  18. <view v-if="description" class="van-action-sheet__description">
  19. {{ description }}
  20. </view>
  21. <view v-if="actions && actions.length">
  22. <!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
  23. <button
  24. :open-type="item.openType"
  25. :style="item.color ? 'color: ' + item.color : ''"
  26. :class="utils.bem('action-sheet__item', { disabled: item.disabled || item.loading }) + ' van-hairline--top ' + (item.className || '')"
  27. hover-class="van-action-sheet__item--hover"
  28. :data-index="index"
  29. @tap="onSelect"
  30. @getuserinfo="bindGetUserInfo"
  31. @contact="bindContact"
  32. @getphonenumber="bindGetPhoneNumber"
  33. @error="bindError"
  34. @launchapp="bindLaunchApp"
  35. @opensetting="bindOpenSetting"
  36. :lang="lang"
  37. :session-from="sessionFrom"
  38. :send-message-title="sendMessageTitle"
  39. :send-message-path="sendMessagePath"
  40. :send-message-img="sendMessageImg"
  41. :show-message-card="showMessageCard"
  42. :app-parameter="appParameter"
  43. v-for="(item, index) in actions"
  44. :key="index"
  45. >
  46. <block v-if="!item.loading">
  47. {{ item.name }}
  48. <text v-if="item.subname" class="van-action-sheet__subname">{{ item.subname }}</text>
  49. </block>
  50. <van-loading v-else custom-class="van-action-sheet__loading" size="20px" />
  51. </button>
  52. </view>
  53. <slot />
  54. <view v-if="cancelText" class="van-action-sheet__cancel" hover-class="van-action-sheet__cancel--hover" hover-stay-time="70" @tap="onCancel">
  55. {{ cancelText }}
  56. </view>
  57. </van-popup>
  58. </view>
  59. </template>
  60. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></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. component_1.VantComponent({
  70. mixins: [button_1.button, open_type_1.openType],
  71. props: {
  72. show: Boolean,
  73. title: String,
  74. cancelText: String,
  75. description: String,
  76. round: {
  77. type: Boolean,
  78. value: true
  79. },
  80. zIndex: {
  81. type: Number,
  82. value: 100
  83. },
  84. actions: {
  85. type: Array,
  86. value: []
  87. },
  88. overlay: {
  89. type: Boolean,
  90. value: true
  91. },
  92. closeOnClickOverlay: {
  93. type: Boolean,
  94. value: true
  95. },
  96. closeOnClickAction: {
  97. type: Boolean,
  98. value: true
  99. },
  100. safeAreaInsetBottom: {
  101. type: Boolean,
  102. value: true
  103. }
  104. },
  105. methods: {
  106. onSelect: function (event) {
  107. var index = event.currentTarget.dataset.index;
  108. var item = this.actions[index];
  109. if (item && !item.disabled && !item.loading) {
  110. this.$emit('select', item);
  111. if (this.closeOnClickAction) {
  112. this.onClose();
  113. }
  114. }
  115. },
  116. onCancel: function () {
  117. this.$emit('cancel');
  118. },
  119. onClose: function () {
  120. this.$emit('close');
  121. },
  122. onClickOverlay: function () {
  123. this.$emit('click-overlay');
  124. this.onClose();
  125. }
  126. }
  127. });
  128. </script>
  129. <style>
  130. @import './index.css';
  131. </style>