Home.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <div id="home">
  3. <div class="shadow-top shadow"></div>
  4. <div class="shadow-bottom shadow"></div>
  5. <div class="shadow-left shadow" :class="{'is-hide': aside_hide}"></div>
  6. <div class="shadow-right shadow" :class="{'is-hide': aside_hide}"></div>
  7. <HomeHeader class="header" />
  8. <TabSwitch class="navi"/>
  9. <!-- <UeVideo class="ue"/>-->
  10. <ComPage class="common"/>
  11. <RouterView class="page"/>
  12. <Map ref="map" class="map"></Map>
  13. </div>
  14. </template>
  15. <script>
  16. import HomeHeader from '@/views/home/Header.vue'
  17. import TabSwitch from '@/views/home/Tab.vue'
  18. import { RouterView } from 'vue-router'
  19. import UeVideo from '@/components/UeVideo'
  20. import ComPage from '@/views/home/ComPage'
  21. import { asideShow } from '@/store/index'
  22. import Map from '@/views/map/Index.vue'
  23. import {ref} from 'vue'
  24. // import {setShip} from "@/utils/map/Boat";
  25. // 禁用鼠标右键
  26. document.oncontextmenu=new Function("event.returnValue=false;")
  27. document.onselectstart=new Function("event.returnValue=false;")
  28. export default {
  29. name: 'HomePage',
  30. components: { HomeHeader, TabSwitch, RouterView, UeVideo, ComPage ,Map},
  31. mounted() {
  32. // setShip()
  33. },
  34. setup() {
  35. const aside_hide = asideShow().isHide
  36. return {
  37. aside_hide
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. #home {
  44. position: relative;
  45. width: 100%;
  46. height: 100%;
  47. overflow: hidden;
  48. background-color: rgb(36, 51, 77);
  49. // background-color: #fff;
  50. color: #e3e3e3;
  51. user-select: none;
  52. .shadow {
  53. position: absolute;
  54. z-index: 2;
  55. }
  56. .shadow-top {
  57. top: 0;
  58. left: 0;
  59. width: 100%;
  60. height: 180px;
  61. background: linear-gradient(0deg, rgba(0,17,50,0) 0%, rgba(0,17,51,0.30) 15%, rgba(0,17,51,0.45) 25%, rgba(0,17,50,1) 100%);
  62. }
  63. .shadow-bottom {
  64. bottom: 0;
  65. left: 0;
  66. width: 100%;
  67. height: 180px;
  68. background: linear-gradient(180deg, rgba(0,17,50,0) 0%, rgba(0,17,51,0.4) 40%, rgba(0,17,50,1) 100%);
  69. }
  70. .shadow-left {
  71. top: 0;
  72. left: 0;
  73. width: 380px;
  74. height: 100vh;
  75. background: linear-gradient(-90deg, rgba(0,17,50,0) 0%, rgba(0,17,51,0.30) 15%, rgba(0,17,51,0.45) 25%, rgba(0,17,50,1) 100%);
  76. transition: all 0.5s ease;
  77. &.is-hide {
  78. left: -380px;
  79. }
  80. }
  81. .shadow-right {
  82. top: 0;
  83. right: 0;
  84. width: 380px;
  85. height: 100vh;
  86. background: linear-gradient(90deg, rgba(0,17,50,0) 0%, rgba(0,17,51,0.30) 15%, rgba(0,17,51,0.45) 25%, rgba(0,17,50,1) 100%);
  87. transition: all 0.5s ease;
  88. &.is-hide {
  89. right: -380px;
  90. }
  91. }
  92. .header, .navi {
  93. z-index: 3;
  94. }
  95. .page {
  96. position: absolute;
  97. width: 100%;
  98. z-index: 4;
  99. }
  100. .common {
  101. position: absolute;
  102. width: 100%;
  103. bottom: 0;
  104. z-index: 5;
  105. }
  106. .ue {
  107. z-index: 1;
  108. }
  109. .map {
  110. z-index: -100;
  111. }
  112. }
  113. </style>