navigation.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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/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">{{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. },
  45. watch: {
  46. scroll(n) {
  47. this.opacity = n / 160
  48. }
  49. },
  50. data() {
  51. return {
  52. opacity: 0,
  53. statusBarHeight1: 0,
  54. navabarHeight: 0,
  55. }
  56. },
  57. mounted() {
  58. this._getCustomBar()
  59. this.opacity = this.scroll
  60. },
  61. methods: {
  62. _getCustomBar() {
  63. const sysinfo = uni.getSystemInfoSync()
  64. // let GAP = 8
  65. // // #ifdef MP-ALIPAY
  66. // GAP = 0
  67. // // #endif
  68. // // #ifdef APP-PLUS
  69. // // #endif
  70. // // #ifdef MP-WEIXIN
  71. // const clientRect = uni.getMenuButtonBoundingClientRect()
  72. // const navabarHeight = (clientRect.bottom - sysinfo.statusBarHeight) + (clientRect.top - sysinfo.statusBarHeight) + GAP
  73. // this.navabarHeight = navabarHeight
  74. // // #endif
  75. this.statusBarHeight1 = sysinfo.statusBarHeight
  76. this.navabarHeight = 100
  77. },
  78. bindReturnView() {
  79. uni.navigateBack({
  80. delta: 1,
  81. }) // 返回上一页
  82. },
  83. }
  84. }
  85. </script>
  86. <style scoped>
  87. .navHei {
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. position: relative;
  92. }
  93. .left {
  94. width: 40rpx;
  95. height: 40rpx;
  96. position: absolute;
  97. left: 0;
  98. }
  99. .top-view {
  100. width: 100%;
  101. position: fixed;
  102. z-index: 99999;
  103. left: 0;
  104. top: 0;
  105. align-items: center;
  106. padding: 0 26rpx;
  107. text-align: center;
  108. }
  109. .navHei {
  110. position: relative;
  111. width: 56rpx;
  112. height: 56rpx;
  113. }
  114. .return-view {
  115. width: 40rpx;
  116. height: 40rpx;
  117. /* margin-top: 24rpx; */
  118. /* margin-left: 32rpx; */
  119. }
  120. .top-text {
  121. color: #060809;
  122. font-size: 36rpx;
  123. font-weight: 600;
  124. line-height: 36rpx;
  125. text-align: center;
  126. font-style: normal;
  127. font-family: PingFangSC, PingFang SC;
  128. }
  129. .view-height {
  130. /* border-bottom:2rpx solid #060809 ; */
  131. /* margin-bottom: 32rpx; */
  132. }
  133. .car-detail-style {
  134. width: 56rpx;
  135. height: 56rpx;
  136. border-radius: 16rpx 0rpx 16rpx 0rpx;
  137. padding-left: 6rpx;
  138. display: flex;
  139. align-items: center;
  140. justify-content: center;
  141. position: absolute;
  142. left: 0;
  143. top: 0;
  144. }
  145. </style>