navigation.vue 2.9 KB

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