当前位置: 首页 > article >正文

uniapp uni-popup使用scroll-view滚动时,底部按钮设置position:fixed失效,部分ios设置有问题

uniapp uni-popup使用scroll-view滚动时,底部按钮设置position:fixed失效,部分ios设置有问题

尝试过多种办法,最后发现部分机型position:fixed失效,position: sticky可以用,但是只设置sticky的话,部分机型又会有问题,无法在最底部,所以想到了嵌套的方法。

FilterPopup.vue弹框组件

<template>
  <!--设置page-meta,弹框打开时禁止滚动页面-->
  <page-meta :page-style="'overflow:'+(isShow?'hidden':'visible')"></page-meta>
  <!-- 筛选 -->
  <uni-popup ref="popupFilter" type="right" background-color="#fff" @change="popupChange">
    <scroll-view scroll-y="true" class="popup-content">
      <view class="main-cont">
        <slot/>
      </view>
      <view class="bottom-fixed-bg-cont-filter"></view>
      <!--给按钮的view再包一层view,设置sticky-->
      <view class="position-sticky" :class="tabBarFilter?'tabbar-btn':''">
        <view class="bottom-fixed-btn-cont">
          <button size="large" class="button" @click="handle('reset')">重置</button>
          <button size="large" class="button button-confirm" type="info" @click="handle('submit')">确认</button>
        </view>
      </view>
    </scroll-view>
  </uni-popup>
</template>
<script setup>
import {ref} from 'vue'

const props = defineProps({
  // 如果是带有tabBar页面的筛选项,tabBarFilter传true,查询重置按钮需要根据入参重设高度
  tabBarFilter: {
    type: Boolean || undefined,
    default: ''
  },
  customClose: { // 自行处理关闭
    type: Boolean,
    default: false
  }
})
const isShow = ref(false)
const emits = defineEmits(['submit', 'reset'])
const handle = (type) => {
  emits(type)
  if (props.customClose && type === 'submit') return;
  close()
}
const popupFilter = ref(null)

function open() {
  popupFilter.value.open()
}

function close() {
  popupFilter.value.close()
}

const popupChange = (e) => {
  isShow.value = e.show
}

defineExpose({
  open,
  close
})
</script>
<style scoped lang="scss">
.popup-content {
  width: 600rpx;
  height: 100vh;
  box-sizing: border-box;

  .main-cont {
    padding: 16rpx 54rpx 0 54rpx;
    box-sizing: border-box;
  }
}

.bottom-fixed-bg-cont-filter {
  // #ifdef H5
  height: 260rpx;
  // #endif
  // #ifndef H5
  height: 180rpx;
  // #endif
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.position-sticky {
  position: sticky;
}
.bottom-fixed-btn-cont {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160rpx;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10rpx 20rpx;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 3px 1px;
}

</style>


http://www.kler.cn/a/472126.html

相关文章:

  • 大模型RAG面试内容有哪些?(附面试资料合集)
  • redis学习-value数据结构
  • # Kafka组件化及拓展
  • Bash语言的数据类型
  • H5通过URL Scheme唤醒手机地图APP
  • 分享3个国内使用正版GPT的网站【亲测有效!2025最新】
  • CV-LLM经典论文解读|VTimeLLM: Empower LLM to Grasp Video MomentsVTimeLLM:赋能大语言模型理解视频片段
  • 使用react开发一个外卖程序
  • 【Pytorch报错】AttributeError: cannot assign module before Module.__init__() call
  • Powerbi官方认证!2025年入行数据分析
  • docker学习使用
  • Spring 设计模式:经典设计模式
  • 聊天机器人Rasa面试内容整理-如何选择合适的分词器和分类器?
  • 博奥龙Nanoantibody系列IP专用抗体
  • element-ui 实现输入框下拉树组件功能
  • 【文本分类】bert二分类
  • Go语言的 的多态性(Polymorphism)核心知识
  • 【Golang 面试题】每日 3 题(二十三)
  • Python----Python基础(列表 list,切片,多维列表,相关函数,排序,元素的增加,元素的删除,元素的修改,元素的查找,列表的拷贝)
  • 【Oceanbase数据库常用巡检SQL】