123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view v-if="showPopup" class="uni-popup" @touchmove.stop.prevent="clear">
- <view class="uni-popup__mask" :class="[ani+'-mask', animation ? 'mask-ani' : '']" @click="close(true)" />
- <view class="uni-popup__wrapper" :class="[type,ani+'-content', animation ? 'content-ani' : '']" @click="close(true)">
- <view class="uni-popup__wrapper-box" @click.stop="clear">
- <uni-status-bar />
- <slot />
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniStatusBar from "../uni-status-bar/uni-status-bar.vue";
-
- export default {
- name: 'UniPopup',
- components: {
- uniStatusBar
- },
- props: {
- // 开启动画
- animation: {
- type: Boolean,
- default: true
- },
- // 弹出层类型,可选值,top: 顶部弹出层;bottom:底部弹出层;center:全屏弹出层
- type: {
- type: String,
- default: 'center'
- },
- // maskClick
- maskClick: {
- type: Boolean,
- default: true
- },
- show: {
- type: Boolean,
- default: true
- }
- },
- data() {
- return {
- ani: '',
- showPopup: false
- }
- },
- watch: {
- show(newValue) {
- if (newValue) {
- this.open()
- } else {
- this.close()
- }
- }
- },
- created() {
- // this.open()
- },
- methods: {
- clear() {},
- open() {
- this.$emit('change', {
- show: true
- })
- this.showPopup = true
- this.$nextTick(() => {
- setTimeout(() => {
- this.ani = 'uni-' + this.type
- }, 100)
- })
- },
- close(type) {
- if (!this.maskClick && type) return
- this.$emit('change', {
- show: false
- })
- this.ani = ''
- this.$nextTick(() => {
- setTimeout(() => {
- this.showPopup = false
- }, 300)
- })
- }
- }
- }
- </script>
- <style scoped>
- .uni-popup {
- position: fixed;
- /* #ifdef H5 */
- top: var(--window-top);
- /* #endif */
- /* #ifndef H5 */
- top: 0;
- /* #endif */
- bottom: 0;
- left: 0;
- right: 0;
- overflow: hidden;
- }
- .uni-popup__mask {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.4);
- opacity: 0;
- }
- .mask-ani {
- transition-property: opacity;
- transition-duration: 0.2s;
- }
- .uni-top-mask {
- opacity: 1;
- }
- .uni-bottom-mask {
- opacity: 1;
- }
- .uni-center-mask {
- opacity: 1;
- }
- .uni-popup__wrapper {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- position: absolute;
- }
- .top {
- top: 0;
- left: 0;
- right: 0;
- transform: translateY(-500px);
- }
- .bottom {
- bottom: 0;
- left: 0;
- right: 0;
- transform: translateY(500px);
- }
- .center {
- /* #ifndef APP-NVUE */
- display: flex;
- flex-direction: column;
- /* #endif */
- bottom: 0;
- left: 0;
- right: 0;
- top: 0;
- justify-content: center;
- align-items: center;
- transform: scale(1.2);
- opacity: 0;
- }
- .uni-popup__wrapper-box {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- position: relative;
- }
- .content-ani {
- /* transition: transform 0.3s;
- */
- transition-property: transform, opacity;
- transition-duration: 0.2s;
- }
- .uni-top-content {
- transform: translateY(0);
- }
- .uni-bottom-content {
- transform: translateY(0);
- }
- .uni-center-content {
- transform: scale(1);
- opacity: 1;
- }
- </style>
|