123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <!-- z-paging -->
- <!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
- <!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
- <!-- 反馈QQ群:790460711 -->
- <!-- 滑动切换选项卡swiper,此组件支持easycom规范,可以在项目中直接引用 -->
- <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布局,默认为是
- 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;
- // #ifdef MP-WEIXIN
- safeAreaBottom = this.systemInfo.screenHeight - this.systemInfo.safeArea.bottom;
- // #endif
- // #ifdef APP-PLUS || H5
- safeAreaBottom = this.systemInfo.safeAreaInsets.bottom || 0;
- // #endif
- return Math.abs(safeAreaBottom);
- }
- }
- }
- </script>
- <style scoped>
- .zp-swiper-container {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- flex: 1;
- }
- .zp-swiper-container-fixed {
- position: fixed;
- /* #ifndef APP-NVUE */
- height: auto;
- width: auto;
- /* #endif */
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- .zp-swiper-super {
- flex: 1;
- position: relative;
- }
- .zp-swiper {
- /* #ifndef APP-NVUE */
- height: 100%;
- width: 100%;
- position: absolute;
- top: 0;
- left: 0;
- /* #endif */
- /* #ifdef APP-NVUE */
- flex: 1;
- /* #endif */
- }
-
- .zp-swiper-item {
- height: 100%;
- }
- </style>
|