fnHeader.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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="focus-farm">
  9. <el-select
  10. v-model="farmVal"
  11. placeholder="我的关注农场"
  12. style="width: 189px"
  13. popper-class="focus-farm-select"
  14. @change="toggleFarm"
  15. >
  16. <el-option label="荔博园" :value="1" />
  17. <el-option label="井冈红糯基地" :value="2" />
  18. </el-select>
  19. </div>
  20. <div class="date" v-show="showDate">
  21. <el-icon size="25"><MoreFilled /></el-icon>
  22. <div class="time">
  23. <div>21:05:46</div>
  24. <span>2025.01.14 星期二</span>
  25. </div>
  26. </div>
  27. </div>
  28. <!-- 四个方向的阴影 -->
  29. <div class="page-shadow">
  30. <div class="page-bg bg-top"></div>
  31. <div class="page-bg bg-right"></div>
  32. <div class="page-bg bg-bottom"></div>
  33. <div class="page-bg bg-left"></div>
  34. </div>
  35. </template>
  36. <script setup>
  37. import { ref } from "vue";
  38. import { useRouter } from "vue-router";
  39. const router = useRouter();
  40. const props = defineProps({
  41. showDate:{
  42. type:Boolean,
  43. defalut:false
  44. },
  45. })
  46. const farmVal = ref(null)
  47. const toggleFarm = (val) => {
  48. router.push({ name: "Home" });
  49. };
  50. </script>
  51. <style lang="scss" scoped>
  52. .header {
  53. width: 100%;
  54. height: 74px;
  55. display: flex;
  56. justify-content: space-between;
  57. box-sizing: border-box;
  58. pointer-events: all;
  59. position: relative;
  60. .title {
  61. width: 100%;
  62. height: 100%;
  63. font-size: 24px;
  64. letter-spacing: 2px;
  65. padding-left: 20px;
  66. display: flex;
  67. align-items: center;
  68. box-sizing: border-box;
  69. background: url("@/assets/images/common/header-bg.png") no-repeat center
  70. center / 100% 100%;
  71. .logo{
  72. width: 23px;
  73. height: 26px;
  74. }
  75. .logo-icon{
  76. width: 33px;
  77. height: 12px;
  78. }
  79. span {
  80. margin: 0 5px;
  81. font-family: "PangMenZhengDao";
  82. }
  83. }
  84. .focus-farm {
  85. margin-right: 192px;
  86. // margin-top: 42px;
  87. margin-top: 26px;
  88. ::v-deep {
  89. .el-select__wrapper {
  90. background: rgba(255, 212, 137, 0.2);
  91. box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
  92. height: 50px;
  93. line-height: 50px;
  94. .el-select__caret {
  95. color: #ffd489;
  96. }
  97. }
  98. .el-select__placeholder {
  99. color: #f7be5a;
  100. font-size: 20px;
  101. font-family: "PangMenZhengDao";
  102. text-align: center;
  103. }
  104. }
  105. }
  106. .date {
  107. display: flex;
  108. align-items: center;
  109. position: absolute;
  110. right: 30px;
  111. top: 24px;
  112. .time{
  113. margin-left: 14px;
  114. line-height: 18px;
  115. div{
  116. font-family: "PangMenZhengDao";
  117. letter-spacing: 1px;
  118. font-size: 16px;
  119. }
  120. span{
  121. font-size: 11px;
  122. font-family: 'SOURCEHANTIFINE';
  123. }
  124. }
  125. }
  126. }
  127. // 阴影样式
  128. .page-bg{
  129. position: fixed;
  130. z-index: -1;
  131. }
  132. .bg-top{
  133. top: 0;
  134. width: 100%;
  135. height: 200px;
  136. background: linear-gradient( 0deg, rgba(0, 21, 31,0), #00151f);
  137. }
  138. .bg-right{
  139. right: 0;
  140. width: 600px;
  141. height: 100%;
  142. background: linear-gradient( 90deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  143. }
  144. .bg-bottom{
  145. bottom: 0;
  146. width: 100%;
  147. height: 200px;
  148. background: linear-gradient( 180deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  149. }
  150. .bg-left{
  151. left: 0;
  152. width: 600px;
  153. height: 100%;
  154. background: linear-gradient( 270deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  155. }
  156. </style>
  157. <style lang="less">
  158. .focus-farm-select {
  159. &.el-popper.is-light {
  160. background: #232323;
  161. border-color: rgba(255, 212, 137, 0.3);
  162. box-shadow: 0px 0px 12px rgba(255, 212, 137, 0.3);
  163. .el-select-dropdown__item {
  164. background: none;
  165. color: rgba(255, 212, 137, 0.6);
  166. }
  167. .el-select-dropdown__item.is-selected {
  168. background: rgba(255, 212, 137, 0.2);
  169. color: #ffd489;
  170. }
  171. }
  172. &.el-popper.is-light .el-popper__arrow:before {
  173. background: #232323;
  174. border-color: rgba(255, 212, 137, 0.3);
  175. }
  176. }
  177. </style>