index.vue 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <uni-shadow-root class="vant-dist-action-sheet-index"><van-popup :show="show" position="bottom" :round="round" :z-index="zIndex" :overlay="overlay" custom-class="van-action-sheet" :safe-area-inset-bottom="safeAreaInsetBottom" :close-on-click-overlay="closeOnClickOverlay" @close="onClickOverlay">
  3. <view v-if="title" class="van-action-sheet__header">
  4. {{ title }}
  5. <van-icon name="cross" custom-class="van-action-sheet__close" @click="onClose"></van-icon>
  6. </view>
  7. <view v-if="description" class="van-action-sheet__description van-hairline--bottom">
  8. {{ description }}
  9. </view>
  10. <view v-if="actions && actions.length">
  11. <button v-for="(item,index) in (actions)" :key="item.index" :open-type="item.disabled || item.loading || (canIUseGetUserProfile && item.openType === 'getUserInfo') ? '' : item.openType" :style="item.color ? 'color: ' + item.color : ''" :class="(utils.bem('action-sheet__item', { disabled: item.disabled || item.loading }))+' '+(item.className || '')" hover-class="van-action-sheet__item--hover" :data-index="index" @click="_$self[(item.disabled || item.loading ? '' : 'onSelect')||'_$noop']($event)" @getuserinfo="onGetUserInfo" @contact="onContact" @getphonenumber="onGetPhoneNumber" @error="onError" @launchapp="onLaunchApp" @opensetting="onOpenSetting" :lang="lang" :session-from="sessionFrom" :send-message-title="sendMessageTitle" :send-message-path="sendMessagePath" :send-message-img="sendMessageImg" :show-message-card="showMessageCard" :app-parameter="appParameter">
  12. <block v-if="(!item.loading)">
  13. {{ item.name }}
  14. <view v-if="item.subname" class="van-action-sheet__subname">{{ item.subname }}</view>
  15. </block>
  16. <van-loading v-else custom-class="van-action-sheet__loading" size="22px"></van-loading>
  17. </button>
  18. </view>
  19. <slot></slot>
  20. <block v-if="cancelText">
  21. <view class="van-action-sheet__gap"></view>
  22. <view class="van-action-sheet__cancel" hover-class="van-action-sheet__cancel--hover" hover-stay-time="70" @click="onCancel">
  23. {{ cancelText }}
  24. </view>
  25. </block>
  26. </van-popup></uni-shadow-root>
  27. </template>
  28. <wxs src="../wxs/utils.wxs" module="utils"></wxs>
  29. <script>
  30. import VanIcon from '../icon/index.vue'
  31. import VanPopup from '../popup/index.vue'
  32. import VanLoading from '../loading/index.vue'
  33. global['__wxVueOptions'] = {components:{'van-icon': VanIcon,'van-popup': VanPopup,'van-loading': VanLoading}}
  34. global['__wxRoute'] = 'vant/dist/action-sheet/index'
  35. import { VantComponent } from '../common/component';
  36. import { button } from '../mixins/button';
  37. VantComponent({
  38. mixins: [button],
  39. props: {
  40. show: Boolean,
  41. title: String,
  42. cancelText: String,
  43. description: String,
  44. round: {
  45. type: Boolean,
  46. value: true,
  47. },
  48. zIndex: {
  49. type: Number,
  50. value: 100,
  51. },
  52. actions: {
  53. type: Array,
  54. value: [],
  55. },
  56. overlay: {
  57. type: Boolean,
  58. value: true,
  59. },
  60. closeOnClickOverlay: {
  61. type: Boolean,
  62. value: true,
  63. },
  64. closeOnClickAction: {
  65. type: Boolean,
  66. value: true,
  67. },
  68. safeAreaInsetBottom: {
  69. type: Boolean,
  70. value: true,
  71. },
  72. },
  73. methods: {
  74. onSelect(event) {
  75. const { index } = event.currentTarget.dataset;
  76. const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data;
  77. const item = actions[index];
  78. if (item) {
  79. this.$emit('select', item);
  80. if (closeOnClickAction) {
  81. this.onClose();
  82. }
  83. if (item.openType === 'getUserInfo' && canIUseGetUserProfile) {
  84. wx.getUserProfile({
  85. desc: item.getUserProfileDesc || ' ',
  86. complete: (userProfile) => {
  87. this.$emit('getuserinfo', userProfile);
  88. },
  89. });
  90. }
  91. }
  92. },
  93. onCancel() {
  94. this.$emit('cancel');
  95. },
  96. onClose() {
  97. this.$emit('close');
  98. },
  99. onClickOverlay() {
  100. this.$emit('click-overlay');
  101. this.onClose();
  102. },
  103. },
  104. });
  105. export default global['__wxComponents']['vant/dist/action-sheet/index']
  106. </script>
  107. <style platform="mp-weixin">
  108. @import '../common/index.css';.van-action-sheet{max-height:90%!important;max-height:var(--action-sheet-max-height,90%)!important;color:#323233;color:var(--action-sheet-item-text-color,#323233)}.van-action-sheet__cancel,.van-action-sheet__item{padding:14px 16px;text-align:center;font-size:16px;font-size:var(--action-sheet-item-font-size,16px);line-height:22px;line-height:var(--action-sheet-item-line-height,22px);background-color:#fff;background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__cancel--hover,.van-action-sheet__item--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-action-sheet__cancel:after,.van-action-sheet__item:after{border-width:0}.van-action-sheet__cancel{color:#646566;color:var(--action-sheet-cancel-text-color,#646566)}.van-action-sheet__gap{display:block;height:8px;height:var(--action-sheet-cancel-padding-top,8px);background-color:#f7f8fa;background-color:var(--action-sheet-cancel-padding-color,#f7f8fa)}.van-action-sheet__item--disabled{color:#c8c9cc;color:var(--action-sheet-item-disabled-text-color,#c8c9cc)}.van-action-sheet__item--disabled.van-action-sheet__item--hover{background-color:#fff;background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__subname{margin-top:8px;margin-top:var(--padding-xs,8px);font-size:12px;font-size:var(--action-sheet-subname-font-size,12px);color:#969799;color:var(--action-sheet-subname-color,#969799);line-height:20px;line-height:var(--action-sheet-subname-line-height,20px)}.van-action-sheet__header{text-align:center;font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--action-sheet-header-font-size,16px);line-height:48px;line-height:var(--action-sheet-header-height,48px)}.van-action-sheet__description{text-align:center;padding:20px 16px;padding:20px var(--padding-md,16px);color:#969799;color:var(--action-sheet-description-color,#969799);font-size:14px;font-size:var(--action-sheet-description-font-size,14px);line-height:20px;line-height:var(--action-sheet-description-line-height,20px)}.van-action-sheet__close{position:absolute!important;top:0;right:0;line-height:inherit!important;padding:0 16px;padding:var(--action-sheet-close-icon-padding,0 16px);font-size:22px!important;font-size:var(--action-sheet-close-icon-size,22px)!important;color:#c8c9cc;color:var(--action-sheet-close-icon-color,#c8c9cc)}.van-action-sheet__loading{display:flex!important}
  109. </style>