FixedHead.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="header_content">
  3. <!-- 头部 -->
  4. <view id="header_box" class="header_box">
  5. <DefaultHead @getInfoData="handleGetSystemInfoData" />
  6. <!-- 和胶囊齐平nav条 -->
  7. <view
  8. :style="{
  9. 'padding-top': `${headerObj.menuPadding}px`,
  10. 'transform': `translateY(-${headerObj.menuButtonTogetherNavInfo.transformTop}px)`
  11. }" class="logo_row"
  12. >
  13. <!-- logo -->
  14. <!-- <view class="logo_box">
  15. <image src="../../../../static/images/logo/jf-name.png" />
  16. </view> -->
  17. <!-- 右侧搜索 -->
  18. <template>
  19. <!-- #ifndef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ -->
  20. <!-- <view class="search_box" @click="handleSearch">
  21. <image src="../../../../static/images/origin/search.png" />
  22. </view> -->
  23. <!-- #endif -->
  24. <!-- #ifdef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ -->
  25. <!-- <view
  26. class="search_box" :style="{
  27. 'position': 'absolute',
  28. 'left': `${headerObj.systemInfo.menuButtonInfo.left}px`,
  29. 'transform': `translateX(-110%)`
  30. }" @click="handleSearch"
  31. >
  32. <image src="../../../../static/images/origin/search.png" />
  33. </view> -->
  34. <!-- #endif -->
  35. <view style="display: flex;justify-content: center;align-items: center;width: 100%;padding: 10upx 22.5upx 0 22.5upx;">
  36. <BeeLocale></BeeLocale>
  37. <SearchBar prevent background="#fff" style="flex: 1;margin-right: 15upx;" @click="$jump('/pages_category_page1/search/index/index')"></SearchBar>
  38. <CategoryIcon></CategoryIcon>
  39. </view>
  40. </template>
  41. </view>
  42. <!-- 其他内容 -->
  43. <!-- <slot /> -->
  44. </view>
  45. <!-- 空盒子撑高 -->
  46. <view class="empty_box" :style="{ height: headerObj.height + 'px' }" />
  47. </view>
  48. </template>
  49. <script>
  50. import DefaultHead from '@/components/DefaultHead'
  51. export default {
  52. name: 'FixedHead',
  53. components: {
  54. DefaultHead
  55. },
  56. data() {
  57. return {
  58. // 头部对象
  59. headerObj: {
  60. height: 0, // 容器总体高度
  61. systemInfo: {}, // 系统此乃西
  62. menuPadding: 0, // 胶囊距离statusBar的高度(胶囊top - statusBarHeight)
  63. // 胶囊配置信息
  64. menuButtonTogetherNavInfo: {
  65. height: 36, // 跟胶囊齐平的nav高度(和CSS的nav高度一致)
  66. transformTop: 0 // nav要相对于menuPadding以后向上位移高度
  67. }
  68. }
  69. }
  70. },
  71. methods: {
  72. // 查询产品
  73. handleSearch() {
  74. uni.navigateTo({
  75. url: `/pages_category_page1/search/index/index`
  76. })
  77. },
  78. /**
  79. * 获取系统信息
  80. * 由DefaultHead回调
  81. */
  82. handleGetSystemInfoData(data) {
  83. this.headerObj.systemInfo = data
  84. // #ifdef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ
  85. this.headerObj.menuPadding = data.menuButtonInfo.top - data.systemInfo.statusBarHeight
  86. const { menuButtonTogetherNavInfo } = this.headerObj
  87. // 如果胶囊高度小于齐平的nav高度
  88. const menuButtonHeight = data.menuButtonInfo.height
  89. const menuButtonTogetherNavHeight = menuButtonTogetherNavInfo.height
  90. if (menuButtonHeight < menuButtonTogetherNavHeight) {
  91. // 胶囊始终在nav高度中心位置
  92. menuButtonTogetherNavInfo.transformTop = (menuButtonTogetherNavHeight - menuButtonHeight) / 2
  93. }
  94. // #endif
  95. this.$nextTick(() => {
  96. const query = uni.createSelectorQuery().in(this)
  97. // 处理撑高逻辑
  98. query.select('#header_box').boundingClientRect((boxData) => {
  99. this.headerObj.height = boxData.height
  100. if (boxData.height < data.menuButtonInfo.bottom) {
  101. this.headerObj.height = data.menuButtonInfo.bottom + 10
  102. }
  103. })
  104. .exec()
  105. })
  106. }
  107. }
  108. }
  109. </script>
  110. <style lang="scss" scoped>
  111. .header_content {
  112. position: relative;
  113. /* // 头部 */
  114. .header_box {
  115. width: 100%;
  116. height: auto;
  117. position: fixed;
  118. background-color: #fff;
  119. z-index: 9999;
  120. image {
  121. width: 100%;
  122. height: 100%;
  123. display: inline-block;
  124. }
  125. .logo_row {
  126. position: relative;
  127. display: flex;
  128. justify-content: space-between;
  129. align-items: center;
  130. box-sizing: border-box;
  131. .logo_box {
  132. width: 286rpx;
  133. height: 72rpx;
  134. }
  135. .search_box {
  136. width: 60rpx;
  137. height: 60rpx;
  138. }
  139. }
  140. }
  141. .empty_box {
  142. width: 100%;
  143. position: relative;
  144. }
  145. }
  146. </style>