Index.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <script setup>
  2. </script>
  3. <template>
  4. <div class="layout-wrap">
  5. <div class="header" :class="[$route.path==='/help/index'?'has-min-width':'']">
  6. <template v-if="!['/video/detail','/video/list'].includes($route.path)">
  7. <div class="logo">
  8. <img src="~@/assets/img/logo.png"/>
  9. </div>
  10. <div class="title">{{ $route.meta.title }}</div>
  11. </template>
  12. <template v-else>
  13. <div class="logo-video">
  14. <img src="~@/assets/img/logo2.png"/>
  15. </div>
  16. <div class="title-video">
  17. <img src="~@/assets/img/title-icon.png" v-if="$route.path==='/video/list'"/>
  18. {{ $route.meta.title }}</div>
  19. </template>
  20. <!-- teleport -->
  21. <div class="layout-header-other"></div>
  22. </div>
  23. <div class="container">
  24. <router-view v-slot="{ Component }">
  25. <component :is="Component" :key="$route.fullPath"/>
  26. </router-view>
  27. </div>
  28. </div>
  29. </template>
  30. <style lang="scss" scoped>
  31. .layout-wrap{
  32. .header{
  33. background-color: #fff;
  34. height: 60px;
  35. box-shadow: 0 3px 6px rgba(0,0,0,.1);
  36. display: flex;
  37. justify-content:space-between;
  38. align-items: center;
  39. box-sizing: border-box;
  40. padding:0 20px;
  41. &.has-min-width{
  42. min-width: 1000px;
  43. }
  44. .logo{
  45. width:200px;
  46. img{
  47. width: 100%;
  48. }
  49. }
  50. .title{
  51. font-size: 18px;
  52. }
  53. .logo-video{
  54. margin-left: 100px;
  55. width:100px;
  56. }
  57. .title-video{
  58. margin-left: 70px;
  59. margin-right: auto;
  60. display: flex;
  61. align-items: center;
  62. img{
  63. margin-right: 10px;
  64. }
  65. }
  66. @media screen and (max-width:650px){
  67. display: none;
  68. }
  69. }
  70. }
  71. </style>