JHeader.vue 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="j-header-container">
  3. <JBack :width="$attrs.width" :height="$attrs.height" :tabbar="$attrs.tabbar" :dark="dark"></JBack>
  4. <view
  5. class="title" :style="{
  6. color: !dark ? '#fff' : ''
  7. }"
  8. >
  9. {{ title }}
  10. </view>
  11. <view class="footerFn">
  12. <slot name="ftFn"></slot>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'JHeader',
  19. props: {
  20. dark: {
  21. type: Boolean,
  22. default: true
  23. },
  24. title: {
  25. type: String,
  26. required: true
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="less" scoped>
  32. @import "../../style/mixin.less";
  33. .j-header-container {
  34. position: relative;
  35. // display: flex;
  36. // justify-content: space-between;
  37. .flex(center, center);
  38. .title {
  39. font-size: 32upx;
  40. color: #3d3d3d;
  41. font-weight: bold;
  42. // margin-top: -8upx;
  43. flex: 1;
  44. text-align: center;
  45. margin-left: -50upx;
  46. }
  47. .footerFn {
  48. position: absolute;
  49. right: 0rpx;
  50. }
  51. }
  52. </style>