123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <view :class="fixed?'zp-swiper-container zp-swiper-container-fixed':'zp-swiper-container'" :style="[swiperStyle]">
- <slot v-if="$slots.top" name="top"></slot>
- <view class="zp-swiper-super">
- <view class="zp-swiper">
- <slot/></slot>
- </view>
- </view>
- <slot v-if="$slots.bottom" name="bottom"></slot>
- </view>
- </template>
- <script>
- export default {
- name: "z-paging-swiper",
- data() {
- return {
- systemInfo: null
- };
- },
- props: {
-
- fixed: {
- type: Boolean,
- default: true
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: false
- }
- },
- mounted() {
- this.$nextTick(() => {
- this.systemInfo = uni.getSystemInfoSync();
- })
- },
- computed: {
- swiperStyle() {
- if (!this.systemInfo) {
- return {};
- }
- let swiperStyle = {};
- const windowTop = this.systemInfo.windowTop;
- const windowBottom = this.systemInfo.windowBottom;
- if (this.fixed) {
- if (windowTop && windowTop !== undefined) {
- swiperStyle.top = windowTop + 'px';
- }
- let bottom = 0;
- if (windowBottom && windowBottom !== undefined) {
- bottom = windowBottom;
- }
- if (this.safeAreaInsetBottom) {
- bottom += this.safeAreaBottom;
- }
- swiperStyle.bottom = bottom + 'px';
- }
- return swiperStyle;
- },
- safeAreaBottom() {
- if (!this.systemInfo) {
- return 0;
- }
- let safeAreaBottom = 0;
-
- safeAreaBottom = this.systemInfo.screenHeight - this.systemInfo.safeArea.bottom;
-
-
- safeAreaBottom = this.systemInfo.safeAreaInsets.bottom || 0;
-
- return Math.abs(safeAreaBottom);
- }
- }
- }
- </script>
- <style scoped>
- .zp-swiper-container {
-
- display: flex;
-
- flex-direction: column;
- flex: 1;
- }
- .zp-swiper-container-fixed {
- position: fixed;
-
- height: auto;
- width: auto;
-
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- .zp-swiper-super {
- flex: 1;
- position: relative;
- }
- .zp-swiper {
-
- height: 100%;
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
-
-
- flex: 1;
-
- }
-
- .zp-swiper-item {
- height: 100%;
- }
- </style>
|