header-view-bar.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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="backImg" 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. backImg:{
  56. type: String,
  57. default: '../../../static/return-2.png',
  58. }
  59. },
  60. data() {
  61. return {
  62. headerContainerWidth: '100%',
  63. size: '',
  64. headerHeight: 0,
  65. headerContentHeight: 0,
  66. };
  67. },
  68. created() {
  69. // #ifdef MP
  70. let {height, top, left} = uni.getMenuButtonBoundingClientRect();
  71. this.size = `padding-top: ${top}px; min-height: ${height}px; height: max-content`;
  72. this.headerContainerWidth = left - 7;
  73. this.headerHeight = top + height + 10;
  74. // #endif
  75. // #ifdef APP || H5
  76. let top = 0, height = 32;
  77. const {statusBarHeight} = uni.getSystemInfoSync();
  78. top += statusBarHeight;
  79. this.size = `padding-top: ${top + 10}px; min-height: ${height}px; height: max-content`;
  80. this.headerHeight = top + height + 20;
  81. this.headerContainerWidth = uni.getSystemInfoSync().windowWidth;
  82. // #endif
  83. this.headerContentHeight = height;
  84. },
  85. methods: {
  86. //返回上一页
  87. back() {
  88. uni.navigateBack({
  89. delta: 1,
  90. });
  91. },
  92. getHeaderStyle() {
  93. return {
  94. headerHeight: this.headerHeight,
  95. headerContentHeight: this.headerContentHeight,
  96. headerContainerWidth: this.headerContainerWidth,
  97. };
  98. },
  99. }
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .header-view{
  104. width: 100vw;
  105. padding-bottom: 10px;
  106. position: relative;
  107. z-index: 2099999999;
  108. display: flex;
  109. align-items: center;
  110. }
  111. .header-view .head-bg{
  112. width: 100%;
  113. height: 100%;
  114. position: absolute;
  115. left: 0;
  116. top: 0;
  117. z-index: 100;
  118. }
  119. .header-view .head-bg>image{
  120. width: 100%;
  121. height: 100%;
  122. }
  123. .header-view .header-container {
  124. width: 100%;
  125. height: max-content;
  126. box-sizing: border-box;
  127. display: flex;
  128. align-items: center;
  129. position: relative;
  130. z-index: 101;
  131. }
  132. .back{
  133. width: 9px;
  134. height: 20px;
  135. margin: 0 13px;
  136. position: absolute;
  137. top: 8px;
  138. left: 0;
  139. z-index: 2099999999;
  140. }
  141. .header-view .header-container .header-title{
  142. position: absolute;
  143. top: 0;
  144. left: 0;
  145. width: 100%;
  146. display: flex;
  147. align-items: center;
  148. justify-content: center;
  149. font-size: 36rpx;
  150. font-weight: bold;
  151. }
  152. .header-content{
  153. flex: 1;
  154. height: 100%;
  155. }
  156. </style>