companyHeader.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="home_header">
  3. <view class="header_message" @click="changeMsg">
  4. <image src="../../static/jnImage/indexPage/alarmSet.png"></image>
  5. </view>
  6. <view class="header_title">
  7. <text class="titleName">发电场站生产实时运营管理平台</text>
  8. </view>
  9. <view class="header_more" @click="changeStation">
  10. <image src="../../static/jnImage/indexPage/moreNew.png"></image>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. };
  19. },
  20. methods: {
  21. changeMsg() {
  22. this.$tab.redirectTo('/pages/common/messagePage')
  23. },
  24. changeStation() {
  25. this.$tab.redirectTo('/pages/common/stationListPage')
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .home_header {
  32. width: calc(100% -32px);
  33. display: flex;
  34. justify-content: space-between;
  35. height: 60px;
  36. padding-top: 16px;
  37. // position: fixed;
  38. .header_message {
  39. width: 15%;
  40. image {
  41. position: relative;
  42. top: 5px;
  43. left: 10px;
  44. width: 25px;
  45. height: 25px;
  46. }
  47. }
  48. .header_title {
  49. width: 70%;
  50. position: relative;
  51. left: 5px;
  52. image {
  53. width: 28px;
  54. height: 22px;
  55. position: relative;
  56. top: 5px;
  57. }
  58. .titleName {
  59. line-height: 20px;
  60. font-size: 36upx;
  61. font-family: FZZhengHeiS-M-GB;
  62. font-weight: 600;
  63. color: #fff;
  64. position: relative;
  65. top: 8px;
  66. }
  67. }
  68. .header_more {
  69. width: 15%;
  70. position: relative;
  71. top: 10px;
  72. left: 10px;
  73. image {
  74. width: 25px;
  75. height: 18px;
  76. }
  77. }
  78. }
  79. </style>