custom.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="navigation" :style="{height:CustomBar+'px'}" >
  3. <view class="me-container" :class="bgColor" :style="cuStyle" >
  4. <view class="me-left flex_ac">
  5. <!-- <view v-if="isBack" @tap="toBack" class="iconfont icon-back"></view> -->
  6. <image v-if="isBack" @tap="toBack" src="@/static/icon/back.png"></image>
  7. <slot name="left"></slot>
  8. </view>
  9. <view class="me-content">
  10. <slot name="content"></slot>
  11. </view>
  12. <view class="me-right">
  13. <slot name="right"></slot>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. props:{
  21. isBack:{
  22. type:Boolean,
  23. default:true
  24. },
  25. bgColor:{
  26. type:String,
  27. default:'bg-white'
  28. }
  29. },
  30. computed:{
  31. cuStyle(){
  32. return `height:${this.CustomBar-this.StatusBar}px;padding-top:${this.StatusBar}px;`
  33. }
  34. },
  35. data() {
  36. return {
  37. StatusBar:this.StatusBar,
  38. CustomBar:this.CustomBar
  39. };
  40. },
  41. methods:{
  42. toBack(){
  43. uni.navigateBack({
  44. delta:1
  45. })
  46. }
  47. }
  48. }
  49. </script>
  50. <style scoped lang="scss">
  51. cover-view{
  52. box-sizing: border-box;
  53. }
  54. .navigation{
  55. position: relative;
  56. .bg-none {
  57. background: none;
  58. }
  59. .bg-white{
  60. background: #FFFFFF;
  61. }
  62. .bg-tran{
  63. background: transparent;
  64. }
  65. .bg-them{
  66. background: #fb5152;
  67. }
  68. .bg-linear {
  69. background: linear-gradient(-90deg,#6da7ff 0%, #7fdaff 100%);;
  70. }
  71. .me-container{
  72. position: fixed;
  73. width: 100%;
  74. top: 0;
  75. z-index: 1024;
  76. // box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0.1);
  77. // padding: 0 30rpx;
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. .me-content{
  82. position: absolute;
  83. left: 50%;
  84. transform: translateX(-50%);
  85. }
  86. .me-left{
  87. image {
  88. width: 32rpx;
  89. height: 32rpx;
  90. display: block;
  91. margin-left: 30rpx;
  92. }
  93. }
  94. }
  95. }
  96. </style>