navBar.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 v-else>
  10. <view class="top-view flex-row" :style="'padding-top:'+statusBarHeight+'rpx;background-color:'+bgColor+';'">
  11. <view class="flex-row" :style="'height:'+navabarHeight+'rpx;'">
  12. <view :class="['flex-row',type=='carDetail'?'car-detail-style':'']" :style="{'margin-left': `${left}rpx`,border:'2rpx solid yellow'}" @tap="bindReturnView">
  13. <img v-if="type!='active'" class="return-view" :src="'https://qiniu.bms16.com/'+(type=='select'?'FjhcWGFGsI56rLZRu7_OnhGtpoUs':(type=='carDetail'||type=='login'?'Fjpnr3cH9ZqTQrGlw3Ywp3qbJGIG':'FnHXbzly7aXi8zLghrTU5BZdwH5_'))" />
  14. </view>
  15. <text class="top-text">{{name}}</text>
  16. </view>
  17. </view>
  18. <view :class="(bgColor!='#FFF'||type==('active'||'noBottom'))?'':'view-height'" :style="'height:'+( navabarHeight + statusBarHeight )+'rpx;'"></view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. name: {
  26. type: String,
  27. default:''
  28. },
  29. type:{
  30. type:String,
  31. default:'my'
  32. },
  33. bgColor:{
  34. type:String,
  35. default:'#FFF'
  36. },
  37. left:{
  38. type:String,
  39. default:'32'
  40. }
  41. },
  42. data () {
  43. return {
  44. statusBarHeight: 0,
  45. navabarHeight: 0,
  46. }
  47. },
  48. mounted() {
  49. this._getCustomBar()
  50. },
  51. methods: {
  52. _getCustomBar() {
  53. const sysinfo = uni.getSystemInfoSync()
  54. let GAP = 8
  55. // #ifdef MP-ALIPAY
  56. GAP = 0
  57. // #endif
  58. // #ifdef APP-PLUS
  59. this.statusBarHeight = sysinfo.statusBarHeight
  60. this.navabarHeight = 100
  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. },
  68. bindReturnView() {
  69. uni.navigateBack({
  70. delta: 1,
  71. }) // 返回上一页
  72. },
  73. }
  74. }
  75. </script>
  76. <style scoped>
  77. .top-view {
  78. background: #ffffff;
  79. width: 100%;
  80. /* height: 170rpx; */
  81. position: fixed;
  82. z-index: 10;
  83. align-items: baseline;
  84. }
  85. .return-view {
  86. width: 40rpx;
  87. height: 40rpx;
  88. /* margin-top: 24rpx; */
  89. /* margin-left: 32rpx; */
  90. }
  91. .top-text {
  92. color: #060809;
  93. margin-left: 230rpx;
  94. font-size: 36rpx;
  95. font-weight: 600;
  96. line-height: 36rpx;
  97. text-align: center;
  98. font-style: normal;
  99. font-family: PingFangSC, PingFang SC;
  100. }
  101. .view-height{
  102. /* border-bottom:2rpx solid #060809 ; */
  103. margin-bottom: 32rpx;
  104. }
  105. .car-detail-style{
  106. width: 56rpx;
  107. height: 56rpx;
  108. background: rgba(0,0,0,0.4);
  109. border-radius: 16rpx 0rpx 16rpx 0rpx;
  110. padding-left: 6rpx;
  111. }
  112. </style>