pageHead.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div class="horHead horSty">
  3. <div class="horHead-left">
  4. <img :src="logo" alt="" />
  5. </div>
  6. <div class="horHead-content">
  7. <img :src="title" />
  8. </div>
  9. <div class="horHead-right">
  10. <div class="right-item">
  11. <span class="item-time">{{ nowstr }}</span>
  12. </div>
  13. <div class="right-item">
  14. {{ weatherText }}
  15. </div>
  16. <div class="right-item" @click="changeScreen">
  17. <img
  18. class="firstImg"
  19. :src="nowScreen == 'vertical' ? changeHor : changeVer"
  20. alt=""
  21. />
  22. </div>
  23. <div class="right-item" style="display:none">
  24. 退出
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script lang="ts">
  30. import Vue from "vue";
  31. declare function require(img: string): string;
  32. const persagyLogo = require("@/assets/horImg/persagyLogo.png");
  33. const title = require("@/assets/horImg/hor_title.png");
  34. const changeVer = require("@/assets/horImg/changeVer.png");
  35. const changeHor = require("@/assets/horImg/changeHor.png");
  36. import { mapState } from "vuex";
  37. import moment from "moment";
  38. export default Vue.extend({
  39. data() {
  40. return {
  41. logo: persagyLogo,
  42. title: title,
  43. changeVer: changeVer,
  44. changeHor: changeHor,
  45. nowScreen: "vertical",
  46. nowstr: "",
  47. // weatherText:''
  48. };
  49. },
  50. mounted() {
  51. // console.log("route", this.$route);
  52. // console.log("router", this.$router);
  53. var path = this.$route.path;
  54. if (path.indexOf("horizontalScreen") > -1) {
  55. this.nowScreen = "horizontal";
  56. } else if (path.indexOf("verticalScreen") > -1) {
  57. this.nowScreen = "vertical";
  58. }
  59. this.nowstr = moment().format("YYYY.MM.DD HH:mm");
  60. setInterval(() => {
  61. this.nowstr = moment().format("YYYY.MM.DD HH:mm");
  62. }, 5000);
  63. },
  64. computed: {
  65. ...mapState({
  66. weatherText(state: any) {
  67. //debugger;
  68. var text = state.weatherCont.text || "晴";
  69. return text;
  70. },
  71. }),
  72. },
  73. methods: {
  74. changeScreen() {
  75. if (this.nowScreen == "vertical") {
  76. this.nowScreen = "horizontal";
  77. this.$router.push({ name: "horizontalScreen" });
  78. } else {
  79. this.nowScreen = "vertical";
  80. this.$router.push({ name: "verticalScreen" });
  81. }
  82. },
  83. },
  84. });
  85. </script>
  86. <style lang="less" scoped>
  87. .horHead {
  88. display: flex;
  89. justify-content: space-between;
  90. align-items: center;
  91. &.horSty {
  92. height: 74px;
  93. // width: 1840px;
  94. }
  95. .horHead-right {
  96. display: flex;
  97. // justify-content: space-between;
  98. height: 46px;
  99. // width: 396px;
  100. .right-item {
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. cursor: pointer;
  105. padding: 12px 16px;
  106. font-size: 16px;
  107. color: #575271;
  108. font-weight: 400;
  109. line-height: 22px;
  110. margin-left: 10px;
  111. background: #ffffff99;
  112. border: 2px solid #ffffffcc;
  113. box-sizing: border-box;
  114. border-radius: 8px;
  115. .firstImg {
  116. margin-right: 6px;
  117. }
  118. .item-time {
  119. font-family: Persagy;
  120. font-weight: 400;
  121. }
  122. }
  123. }
  124. }
  125. </style>