navBar.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view>
  3. <!-- #ifdef MP-WEIXIN -->
  4. <view v-if="type=='index'" :style="{height: `${statusBarHeight + 20}px`}"></view>
  5. <!-- #endif -->
  6. <!-- #ifdef APP -->
  7. <view v-if="type=='index'" :style="{height: `${statusBarHeight}px`}"></view>
  8. <!-- #endif -->
  9. <view>
  10. <view class="top-view flex-row" :style="'padding-top:'+statusBarHeight+'px;background:'+bgColor+';'">
  11. <view class="navHei" :style="{'height':`calc(${navabarHeight}rpx)`,'width':'100%',}">
  12. <view :class="[type=='carDetail'?'car-detail-style':'','left']" @tap="bindReturnView">
  13. <img v-if="type!='active'" class="return-view"
  14. :src="'https://qiniu.bms16.com/'+((type=='select'||type=='login')?'FjhcWGFGsI56rLZRu7_OnhGtpoUs':(type=='carDetail'?'Fjpnr3cH9ZqTQrGlw3Ywp3qbJGIG':'FnHXbzly7aXi8zLghrTU5BZdwH5_'))" />
  15. </view>
  16. <text class="top-text">{{name}}</text>
  17. </view>
  18. </view>
  19. <view :class="(bgColor!='#FFF'||type==('active'||'noBottom'))?'':'view-height'"
  20. :style="{'height':`calc(${statusBarHeight}px + ${navabarHeight}rpx)`}"></view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. props: {
  27. name: {
  28. type: String,
  29. default: ''
  30. },
  31. type: {
  32. type: String,
  33. default: 'my'
  34. },
  35. bgColor: {
  36. type: String,
  37. default: 'rgba(255,255,255)'
  38. },
  39. left: {
  40. type: String,
  41. default: '32'
  42. }
  43. },
  44. data() {
  45. return {
  46. statusBarHeight: 0,
  47. navabarHeight: 0,
  48. }
  49. },
  50. mounted() {
  51. this._getCustomBar()
  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.statusBarHeight = 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. background: #ffffff;
  93. width: 100%;
  94. position: fixed;
  95. z-index: 10;
  96. left: 0;
  97. top: 0;
  98. align-items: center;
  99. padding: 0 26rpx;
  100. text-align: center;
  101. }
  102. .return-view {
  103. width: 40rpx;
  104. height: 40rpx;
  105. /* margin-top: 24rpx; */
  106. /* margin-left: 32rpx; */
  107. }
  108. .top-text {
  109. color: #060809;
  110. font-size: 36rpx;
  111. font-weight: 600;
  112. line-height: 36rpx;
  113. text-align: center;
  114. font-style: normal;
  115. font-family: PingFangSC, PingFang SC;
  116. }
  117. .view-height {
  118. /* border-bottom:2rpx solid #060809 ; */
  119. /* margin-bottom: 32rpx; */
  120. }
  121. .car-detail-style {
  122. width: 56rpx;
  123. height: 56rpx;
  124. background: rgba(0, 0, 0, 0.4);
  125. border-radius: 16rpx 0rpx 16rpx 0rpx;
  126. padding-left: 6rpx;
  127. }
  128. </style>