statusBar.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="statusBar" :style="{height: meunButtonInfo? navheight + 'px': customBar +'px'}">
  3. <view class="nav" v-if="meunButtonInfo" :style="{height:navheight + 'px'}">
  4. <view v-if="item.btn" class="backBtnSty" style="position: fixed;transform: translate(0,-50%);" :style="{width:'30px',marginTop:navTop+meunButtonInfo/2 +'px'}">
  5. <!-- <image @click="backIndex" src="../../static/logo.png" mode="aspectFill"></image> -->
  6. <uni-icons @click="backIndex" type="back" size="20"></uni-icons>
  7. </view>
  8. <view class="navTit" :style="{paddingTop:navTop+ 'px',lineHeight:meunButtonInfo+'px'}">
  9. <view class="postTit">{{item.title}} </view>
  10. </view>
  11. </view>
  12. <!-- app端 -->
  13. <view class="nav" v-else :style="{height:customBar +'px'}">
  14. <view v-if="item.btn" class="backBtnSty" style="position: fixed;transform: translate(0,-50%);" :style="{width:'30px',marginTop:appAllHeight/2 +'px'}">
  15. <!-- <image @click="backIndex" src="../../static/img/back.png" mode="aspectFill"></image> -->
  16. <uni-icons @click="backIndex" type="back" size="20"></uni-icons>
  17. </view>
  18. <!-- 导航栏文字开始 -->
  19. <view class="navTit" :style="{lineHeight:customBar+'px'}">
  20. <view class="postTit">{{item.title}} </view>
  21. </view>
  22. <!-- 导航栏文字结束 -->
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. name:"statusBar",
  29. props:{
  30. item:{
  31. type:Object,
  32. default(){
  33. return{
  34. title:'',
  35. btn:1 //判断是否显示返回按钮
  36. }
  37. }
  38. }
  39. },
  40. data() {
  41. return {
  42. navheight:this.navheight, //导航栏高度
  43. statusHeight:this.statusHeight, //状态栏高度
  44. navTop:this.navTop, //胶囊离顶高度
  45. meunButtonInfo:this.meunButtonInfo, //胶囊高度
  46. appAllHeight:this.customBar,//app导航栏高度
  47. };
  48. },
  49. methods:{
  50. backIndex(){
  51. uni.navigateBack({
  52. url:this.item.btn
  53. })
  54. }
  55. },
  56. onLoad() {
  57. console.log(this.meunButtonInfo);
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. .statusBar{
  63. // background-color: #000;
  64. }
  65. .nav{
  66. width: 750rpx;
  67. background-color: #FFFFFF;
  68. position: fixed;
  69. top: 0;
  70. z-index: 11;
  71. .backBtnSty{
  72. width: 40rpx;
  73. height: 40rpx;
  74. margin-left: 30rpx;
  75. margin-top:50rpx;
  76. image{
  77. width: 16rpx;height: 28rpx;
  78. }
  79. }
  80. .navTit{
  81. width: 260rpx;
  82. height: 44px;
  83. margin: auto;
  84. color: #ffffff;
  85. // font-family: 'Microsoft YaHei';
  86. text-align: center;
  87. display: flex;
  88. justify-content: space-around;
  89. .postTit{
  90. height: 40px;
  91. color: rgba(0, 0, 0, 0.88);
  92. font-size: 34rpx;
  93. // font-family: Microsoft YaHei;
  94. font-weight: bold;
  95. display: inline-block; /* 将容器设置为行内块元素 */
  96. vertical-align: bottom; /* 将文字垂直对齐到底部 */
  97. }
  98. }
  99. }
  100. .tab-item-active {
  101. color: #FFFFFF !important;
  102. font-size: 18px;
  103. font-weight: bold;
  104. }
  105. </style>