statusBar.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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="25"></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 //判断是否显示返回按钮 0不显示 1显示 2返回首页
  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. if(this.item.btn==2){
  52. uni.switchTab({
  53. url:'/pages/index/index'
  54. })
  55. return
  56. }
  57. uni.navigateBack()
  58. }
  59. },
  60. onLoad() {
  61. // console.log(this.meunButtonInfo);
  62. }
  63. }
  64. </script>
  65. <style lang="scss">
  66. .statusBar{
  67. // background-color: #000;
  68. }
  69. .nav{
  70. width: 750rpx;
  71. background-color: #FFFFFF;
  72. position: fixed;
  73. top: 0;
  74. z-index: 11;
  75. .backBtnSty{
  76. width: 40rpx;
  77. height: 40rpx;
  78. margin-left: 30rpx;
  79. margin-top:50rpx;
  80. image{
  81. width: 16rpx;height: 28rpx;
  82. }
  83. }
  84. .navTit{
  85. width: 260rpx;
  86. height: 44px;
  87. margin: auto;
  88. color: #ffffff;
  89. // font-family: 'Microsoft YaHei';
  90. text-align: center;
  91. display: flex;
  92. justify-content: space-around;
  93. .postTit{
  94. height: 40px;
  95. color: rgba(0, 0, 0, 0.88);
  96. font-size: 34rpx;
  97. // font-family: Microsoft YaHei;
  98. font-weight: bold;
  99. display: inline-block; /* 将容器设置为行内块元素 */
  100. vertical-align: bottom; /* 将文字垂直对齐到底部 */
  101. }
  102. }
  103. }
  104. .tab-item-active {
  105. color: #FFFFFF !important;
  106. font-size: 18px;
  107. font-weight: bold;
  108. }
  109. </style>