HorHead.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <div class="horHead horSty">
  3. <div class="horHead-left">
  4. <img
  5. :src="logo"
  6. alt=""
  7. >
  8. </div>
  9. <div class="horHead-content">
  10. <img :src="title" />
  11. </div>
  12. <div class="horHead-right">
  13. <div class="right-item">
  14. <span class="item-time"> 2021.07.26 11:00</span>
  15. </div>
  16. <div class="right-item">
  17. </div>
  18. <div class="right-item">
  19. <img
  20. class="firstImg"
  21. :src="changeVer"
  22. alt=""
  23. >
  24. <img
  25. :src="shrink"
  26. alt=""
  27. >
  28. </div>
  29. <div class="right-item">
  30. 退出
  31. </div>
  32. </div>
  33. </div>
  34. </template>
  35. <script lang="ts">
  36. import Vue from "vue";
  37. declare function require(img: string): string;
  38. const persagyLogo = require("@/assets/horImg/persagyLogo.png");
  39. const title = require("@/assets/horImg/hor_title.png");
  40. const changeVer = require("@/assets/horImg/changeVer.png");
  41. const shrink = require("@/assets/horImg/shrink.png");
  42. export default Vue.extend({
  43. data() {
  44. return {
  45. logo: persagyLogo,
  46. title: title,
  47. changeVer: changeVer,
  48. shrink: shrink,
  49. };
  50. },
  51. });
  52. </script>
  53. <style lang="less" scoped>
  54. .horHead {
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. &.horSty {
  59. height: 74px;
  60. width: 1840px;
  61. }
  62. .horHead-right {
  63. display: flex;
  64. justify-content: space-between;
  65. height: 46px;
  66. width: 396px;
  67. .right-item {
  68. display: flex;
  69. justify-content: center;
  70. align-items: center;
  71. padding: 12px 16px;
  72. font-size: 16px;
  73. color: #575271;
  74. font-weight: 400;
  75. line-height: 22px;
  76. background: #ffffff99;
  77. border: 2px solid #ffffffcc;
  78. box-sizing: border-box;
  79. border-radius: 8px;
  80. .firstImg {
  81. margin-right: 6px;
  82. }
  83. .item-time {
  84. font-family: Persagy;
  85. font-weight: 400;
  86. }
  87. }
  88. }
  89. }
  90. </style>