navigation.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view>
  3. <view class="top-view flex-row"
  4. :style="{'padding-top':`${statusBarHeight1}px`,background:`rgba(255,255,255,${opacity})`}">
  5. <view class="navHei" :style="{'height':`calc(${navabarHeight}rpx)`,'width':'100%',}">
  6. <view v-if="isback" class="left" @tap="bindReturnView">
  7. <img v-if="type" class="return-view" :src="'https://qiniu.bms16.com/'+ (whiteColor?'Fjpnr3cH9ZqTQrGlw3Ywp3qbJGIG':'FnHXbzly7aXi8zLghrTU5BZdwH5_')" />
  8. <view v-else class="pos">
  9. <view class="car-detail-style">
  10. <image class="return-view"
  11. src="https://qiniu.bms16.com/FnHXbzly7aXi8zLghrTU5BZdwH5_" mode="aspectFit"></image>
  12. </view>
  13. <view :style="{opacity:1 - opacity,background:`rgba(0,0,0,0.4)`}" class="car-detail-style">
  14. <image class="return-view"
  15. src="https://qiniu.bms16.com/Fjpnr3cH9ZqTQrGlw3Ywp3qbJGIG" mode="aspectFit"></image>
  16. </view>
  17. </view>
  18. </view>
  19. <text class="top-text" :class="whiteColor?'whiteClass':''">{{name}}</text>
  20. </view>
  21. </view>
  22. <view v-if="type" :style="{'height':`calc(${navabarHeight}rpx + ${statusBarHeight1}px)`}"></view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. props: {
  28. isback:{
  29. type: Boolean,
  30. default: true
  31. },
  32. name: {
  33. type: String,
  34. default: ''
  35. },
  36. scroll: {
  37. default: 0,
  38. type: Number
  39. },
  40. type:{
  41. type: Boolean,
  42. default: false
  43. },
  44. whiteColor:{
  45. type: Boolean,
  46. default: false
  47. },
  48. },
  49. watch: {
  50. scroll(n) {
  51. this.opacity = n / 160
  52. }
  53. },
  54. data() {
  55. return {
  56. opacity: 0,
  57. statusBarHeight1: 0,
  58. navabarHeight: 0,
  59. }
  60. },
  61. mounted() {
  62. this._getCustomBar()
  63. this.opacity = this.scroll
  64. },
  65. methods: {
  66. _getCustomBar() {
  67. const sysinfo = uni.getSystemInfoSync()
  68. // let GAP = 8
  69. // // #ifdef MP-ALIPAY
  70. // GAP = 0
  71. // // #endif
  72. // // #ifdef APP-PLUS
  73. // // #endif
  74. // // #ifdef MP-WEIXIN
  75. // const clientRect = uni.getMenuButtonBoundingClientRect()
  76. // const navabarHeight = (clientRect.bottom - sysinfo.statusBarHeight) + (clientRect.top - sysinfo.statusBarHeight) + GAP
  77. // this.navabarHeight = navabarHeight
  78. // // #endif
  79. this.statusBarHeight1 = sysinfo.statusBarHeight
  80. this.navabarHeight = 100
  81. },
  82. bindReturnView() {
  83. uni.navigateBack({
  84. delta: 1,
  85. }) // 返回上一页
  86. },
  87. }
  88. }
  89. </script>
  90. <style scoped>
  91. .navHei {
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. position: relative;
  96. }
  97. .left {
  98. width: 40rpx;
  99. height: 40rpx;
  100. position: absolute;
  101. left: 0;
  102. }
  103. .top-view {
  104. width: 100%;
  105. position: fixed;
  106. z-index: 99999;
  107. left: 0;
  108. top: 0;
  109. align-items: center;
  110. padding: 0 26rpx;
  111. text-align: center;
  112. }
  113. .navHei {
  114. position: relative;
  115. width: 56rpx;
  116. height: 56rpx;
  117. }
  118. .return-view {
  119. width: 40rpx;
  120. height: 40rpx;
  121. /* margin-top: 24rpx; */
  122. /* margin-left: 32rpx; */
  123. }
  124. .top-text {
  125. color: #FFFFFF;
  126. font-size: 36rpx;
  127. font-weight: 600;
  128. line-height: 36rpx;
  129. text-align: center;
  130. font-style: normal;
  131. font-family: PingFangSC, PingFang SC;
  132. /* position: absolute;
  133. transform: translate(-50%,50%); */
  134. position: fixed;
  135. /* transform: translate(-90%,50%); */
  136. left: 10%;
  137. }
  138. .top-text.whiteClass {
  139. color: #FFFFFF;
  140. }
  141. .view-height {
  142. /* border-bottom:2rpx solid #060809 ; */
  143. /* margin-bottom: 32rpx; */
  144. }
  145. .car-detail-style {
  146. width: 56rpx;
  147. height: 56rpx;
  148. border-radius: 16rpx 0rpx 16rpx 0rpx;
  149. padding-left: 6rpx;
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. position: absolute;
  154. left: 0;
  155. top: 0;
  156. }
  157. </style>