navigation.vue 3.1 KB

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