fnHeader.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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>{{time}}</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 { onMounted, onUnmounted, 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. function formatTimeToHHmmss(date) {
  51. const hours = String(date.getHours()).padStart(2, '0');
  52. const minutes = String(date.getMinutes()).padStart(2, '0');
  53. const seconds = String(date.getSeconds()).padStart(2, '0');
  54. return `${hours}.${minutes}.${seconds}`;
  55. }
  56. const time = ref("21:05:46")
  57. const timer = ref(null)
  58. onMounted(()=>{
  59. timer.value = setInterval(()=>{
  60. time.value = formatTimeToHHmmss(new Date())
  61. },1000)
  62. })
  63. onUnmounted(()=>{
  64. timer.value = null
  65. })
  66. </script>
  67. <style lang="scss" scoped>
  68. .header {
  69. width: 100%;
  70. height: 74px;
  71. display: flex;
  72. justify-content: space-between;
  73. box-sizing: border-box;
  74. pointer-events: all;
  75. position: relative;
  76. .title {
  77. width: 100%;
  78. height: 100%;
  79. font-size: 24px;
  80. letter-spacing: 2px;
  81. padding-left: 20px;
  82. display: flex;
  83. align-items: center;
  84. box-sizing: border-box;
  85. background: url("@/assets/images/common/header-bg.png") no-repeat center
  86. center / 100% 100%;
  87. .logo{
  88. width: 23px;
  89. height: 26px;
  90. }
  91. .logo-icon{
  92. width: 33px;
  93. height: 12px;
  94. }
  95. span {
  96. margin: 0 5px;
  97. font-family: "PangMenZhengDao";
  98. }
  99. }
  100. .focus-farm {
  101. position: absolute;
  102. right: 192px;
  103. top: 23px;
  104. ::v-deep {
  105. .el-select__wrapper {
  106. background: rgba(255, 212, 137, 0.2);
  107. box-shadow: 0 0 0 1px rgba(255, 212, 137, 0.3) inset;
  108. height: 50px;
  109. line-height: 50px;
  110. .el-select__caret {
  111. color: #ffd489;
  112. }
  113. }
  114. .el-select__placeholder {
  115. color: #f7be5a;
  116. font-size: 20px;
  117. font-family: "PangMenZhengDao";
  118. text-align: center;
  119. }
  120. }
  121. }
  122. .date {
  123. display: flex;
  124. align-items: center;
  125. position: absolute;
  126. right: 30px;
  127. top: 24px;
  128. .time{
  129. margin-left: 14px;
  130. line-height: 18px;
  131. div{
  132. font-family: "PangMenZhengDao";
  133. letter-spacing: 1px;
  134. font-size: 16px;
  135. }
  136. span{
  137. font-size: 11px;
  138. font-family: 'SOURCEHANTIFINE';
  139. }
  140. }
  141. }
  142. }
  143. // 阴影样式
  144. .page-bg{
  145. position: fixed;
  146. z-index: -1;
  147. }
  148. .bg-top{
  149. top: 0;
  150. width: 100%;
  151. height: 200px;
  152. background: linear-gradient( 0deg, rgba(0, 21, 31,0), #00151f);
  153. }
  154. .bg-right{
  155. right: 0;
  156. width: 600px;
  157. height: 100%;
  158. background: linear-gradient( 90deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  159. }
  160. .bg-bottom{
  161. bottom: 0;
  162. width: 100%;
  163. height: 200px;
  164. background: linear-gradient( 180deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  165. }
  166. .bg-left{
  167. left: 0;
  168. width: 600px;
  169. height: 100%;
  170. background: linear-gradient( 270deg, rgba(0, 21, 31,0), rgb(0, 21, 31,0.7));
  171. }
  172. </style>
  173. <style lang="less">
  174. .focus-farm-select {
  175. &.el-popper.is-light {
  176. background: #232323;
  177. border-color: rgba(255, 212, 137, 0.3);
  178. box-shadow: 0px 0px 12px rgba(255, 212, 137, 0.3);
  179. .el-select-dropdown__item {
  180. background: none;
  181. color: rgba(255, 212, 137, 0.6);
  182. }
  183. .el-select-dropdown__item.is-selected {
  184. background: rgba(255, 212, 137, 0.2);
  185. color: #ffd489;
  186. }
  187. }
  188. &.el-popper.is-light .el-popper__arrow:before {
  189. background: #232323;
  190. border-color: rgba(255, 212, 137, 0.3);
  191. }
  192. }
  193. </style>