fnHeader.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <div class="header">
  3. <div class="title">
  4. <img class="logo" src="@/assets/images/common/logo.png" alt="" />
  5. <span>飞鸟智慧巡园平台</span>
  6. <img class="logo-icon" src="@/assets/images/common/logo-icon.png" alt="" />
  7. </div>
  8. <div class="date" v-show="showDate">
  9. <el-icon size="25"><MoreFilled /></el-icon>
  10. <div class="time">
  11. <div>21:05:46</div>
  12. <span>2024.11.04 星期一</span>
  13. </div>
  14. </div>
  15. </div>
  16. <!-- 四个方向的阴影 -->
  17. <div class="page-shadow">
  18. <div class="page-bg bg-top"></div>
  19. <div class="page-bg bg-right"></div>
  20. <div class="page-bg bg-bottom"></div>
  21. <div class="page-bg bg-left"></div>
  22. </div>
  23. </template>
  24. <script setup>
  25. const props = defineProps({
  26. showDate:{
  27. type:Boolean,
  28. defalut:false
  29. },
  30. })
  31. </script>
  32. <style lang="scss" scoped>
  33. .header {
  34. width: 100%;
  35. height: 74px;
  36. display: flex;
  37. justify-content: space-between;
  38. box-sizing: border-box;
  39. pointer-events: all;
  40. position: relative;
  41. .title {
  42. width: 100%;
  43. height: 100%;
  44. font-size: 24px;
  45. letter-spacing: 2px;
  46. padding-left: 20px;
  47. display: flex;
  48. align-items: center;
  49. box-sizing: border-box;
  50. background: url("@/assets/images/common/header-bg.png") no-repeat center
  51. center / 100% 100%;
  52. .logo{
  53. width: 23px;
  54. height: 26px;
  55. }
  56. .logo-icon{
  57. width: 33px;
  58. height: 12px;
  59. }
  60. span {
  61. margin: 0 5px;
  62. font-family: "PangMenZhengDao";
  63. }
  64. }
  65. .date {
  66. display: flex;
  67. align-items: center;
  68. position: absolute;
  69. right: 30px;
  70. top: 24px;
  71. .time{
  72. margin-left: 14px;
  73. line-height: 18px;
  74. div{
  75. font-family: "PangMenZhengDao";
  76. letter-spacing: 1px;
  77. font-size: 16px;
  78. }
  79. span{
  80. font-size: 11px;
  81. font-family: 'SOURCEHANTIFINE';
  82. }
  83. }
  84. }
  85. }
  86. // 阴影样式
  87. .page-bg{
  88. position: fixed;
  89. z-index: -1;
  90. }
  91. .bg-top{
  92. top: 0;
  93. width: 100%;
  94. height: 200px;
  95. background: linear-gradient( 0deg, rgba(0, 21, 31,0), #00151f);
  96. }
  97. .bg-right{
  98. right: 0;
  99. width: 600px;
  100. height: 100%;
  101. background: linear-gradient( 90deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  102. }
  103. .bg-bottom{
  104. bottom: 0;
  105. width: 100%;
  106. height: 200px;
  107. background: linear-gradient( 180deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  108. }
  109. .bg-left{
  110. left: 0;
  111. width: 600px;
  112. height: 100%;
  113. background: linear-gradient( 270deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  114. }
  115. </style>