header-view-bar.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view class="header-view" :style="size">
  3. <view class="head-bg" :style="{background: backgroundColor, opacity: opacity}">
  4. <image v-if="backgroundImg.length > 0" :src="backgroundImg" mode=""></image>
  5. </view>
  6. <view class="header-container" :style="{minHeight: headerContentHeight + 'px'}">
  7. <image v-if="!hideBack" src="../../static/return-2.png" class="back" @tap="back" mode="widthFix"></image>
  8. <view class="header-title" :style="{color: titleColor, minHeight: headerContentHeight + 'px', opacity: titleOpacity}" v-if="title.length > 0">{{title}}</view>
  9. <view class="header-content">
  10. <slot></slot>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. name: 'HeaderViewBar',
  18. props: {
  19. // 是否隐藏返回按钮
  20. hideBack: {
  21. type: Boolean,
  22. default: false,
  23. },
  24. // 标题
  25. title: {
  26. type: String,
  27. default: '',
  28. },
  29. // 标题颜色
  30. titleColor: {
  31. type: String,
  32. default: '#FFFFFF',
  33. },
  34. // 标题透明度
  35. titleOpacity: {
  36. type: Number,
  37. default: 1,
  38. },
  39. // 背景透明度
  40. opacity: {
  41. type: Number,
  42. default: 1,
  43. },
  44. // 背景颜色
  45. backgroundColor: {
  46. type: String,
  47. default: '',
  48. },
  49. // 背景图片
  50. backgroundImg: {
  51. type: String,
  52. default: '.',
  53. },
  54. },
  55. data() {
  56. return {
  57. headerContainerWidth: '100%',
  58. size: '',
  59. headerHeight: 0,
  60. headerContentHeight: 0,
  61. };
  62. },
  63. created() {
  64. // #ifdef MP
  65. let {height, top, left} = uni.getMenuButtonBoundingClientRect();
  66. this.size = `padding-top: ${top}px; min-height: ${height}px; height: max-content`;
  67. this.headerContainerWidth = left - 7;
  68. this.headerHeight = top + height + 10;
  69. // #endif
  70. // #ifdef APP || H5
  71. let top = 0, height = 32;
  72. const {statusBarHeight} = uni.getSystemInfoSync();
  73. top += statusBarHeight;
  74. this.size = `padding-top: ${top + 10}px; min-height: ${height}px; height: max-content`;
  75. this.headerHeight = top + height + 20;
  76. this.headerContainerWidth = uni.getSystemInfoSync().windowWidth;
  77. // #endif
  78. this.headerContentHeight = height;
  79. },
  80. methods: {
  81. //返回上一页
  82. back() {
  83. uni.navigateBack({
  84. delta: 1,
  85. });
  86. },
  87. getHeaderStyle() {
  88. return {
  89. headerHeight: this.headerHeight,
  90. headerContentHeight: this.headerContentHeight,
  91. headerContainerWidth: this.headerContainerWidth,
  92. };
  93. },
  94. }
  95. }
  96. </script>
  97. <style lang="scss" scoped>
  98. .header-view{
  99. width: 100vw;
  100. padding-bottom: 10px;
  101. position: relative;
  102. z-index: 2099999999;
  103. display: flex;
  104. align-items: center;
  105. }
  106. .header-view .head-bg{
  107. width: 100%;
  108. height: 100%;
  109. position: absolute;
  110. left: 0;
  111. top: 0;
  112. z-index: 100;
  113. }
  114. .header-view .head-bg>image{
  115. width: 100%;
  116. height: 100%;
  117. }
  118. .header-view .header-container {
  119. width: 100%;
  120. height: max-content;
  121. box-sizing: border-box;
  122. display: flex;
  123. align-items: center;
  124. position: relative;
  125. z-index: 101;
  126. }
  127. .back{
  128. width: 9px;
  129. height: 20px;
  130. margin: 0 13px;
  131. position: absolute;
  132. top: 8px;
  133. left: 0;
  134. z-index: 2099999999;
  135. }
  136. .header-view .header-container .header-title{
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. width: 100%;
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. font-size: 36rpx;
  145. font-weight: bold;
  146. }
  147. .header-content{
  148. flex: 1;
  149. height: 100%;
  150. }
  151. </style>