index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view>
  3. <van-overlay v-if="overlay" :show="show" :z-index="zIndex" :custom-style="overlayStyle" :duration="duration" @click="onClickOverlay" />
  4. <view
  5. v-if="inited"
  6. :class="'custom-class ' + classes + ' ' + utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop }])"
  7. :style="
  8. 'z-index: ' +
  9. zIndex +
  10. '; -webkit-transition-duration:' +
  11. currentDuration +
  12. 'ms; transition-duration:' +
  13. currentDuration +
  14. 'ms; ' +
  15. (display ? '' : 'display: none;') +
  16. ';' +
  17. customStyle
  18. "
  19. @transitionend="onTransitionEnd"
  20. >
  21. <slot />
  22. <van-icon
  23. v-if="closeable"
  24. :name="closeIcon"
  25. :class="'close-icon-class van-popup__close-icon van-popup__close-icon--' + closeIconPosition"
  26. @tap.native="onClickCloseIcon"
  27. />
  28. </view>
  29. </view>
  30. </template>
  31. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  32. <script>
  33. 'use strict';
  34. Object.defineProperty(exports, '__esModule', {
  35. value: true
  36. });
  37. var component_1 = require('../common/component');
  38. var transition_1 = require('../mixins/transition');
  39. component_1.VantComponent({
  40. classes: ['enter-class', 'enter-active-class', 'enter-to-class', 'leave-class', 'leave-active-class', 'leave-to-class', 'close-icon-class'],
  41. mixins: [transition_1.transition(false)],
  42. props: {
  43. round: Boolean,
  44. closeable: Boolean,
  45. customStyle: String,
  46. overlayStyle: String,
  47. transition: {
  48. type: String,
  49. observer: 'observeClass'
  50. },
  51. zIndex: {
  52. type: Number,
  53. value: 100
  54. },
  55. overlay: {
  56. type: Boolean,
  57. value: true
  58. },
  59. closeIcon: {
  60. type: String,
  61. value: 'cross'
  62. },
  63. closeIconPosition: {
  64. type: String,
  65. value: 'top-right'
  66. },
  67. closeOnClickOverlay: {
  68. type: Boolean,
  69. value: true
  70. },
  71. position: {
  72. type: String,
  73. value: 'center',
  74. observer: 'observeClass'
  75. },
  76. safeAreaInsetBottom: {
  77. type: Boolean,
  78. value: true
  79. },
  80. safeAreaInsetTop: {
  81. type: Boolean,
  82. value: false
  83. }
  84. },
  85. created: function () {
  86. this.observeClass();
  87. },
  88. methods: {
  89. onClickCloseIcon: function () {
  90. this.$emit('close');
  91. },
  92. onClickOverlay: function () {
  93. this.$emit('click-overlay');
  94. if (this.closeOnClickOverlay) {
  95. this.$emit('close');
  96. }
  97. },
  98. observeClass: function () {
  99. var _a = this;
  100. var transition = _a.transition;
  101. var position = _a.position;
  102. var updateData = {
  103. name: transition || position
  104. };
  105. if (transition === 'none') {
  106. updateData.duration = 0;
  107. }
  108. this.setData(updateData);
  109. }
  110. }
  111. });
  112. </script>
  113. <style>
  114. @import './index.css';
  115. </style>