index.vue 843 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <el-header class="MainHeader">
  3. <div class="title">通用侦察平台任务模拟系统</div>
  4. </el-header>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return{
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .MainHeader {
  18. position: relative;
  19. padding: 0px;
  20. display: flex;
  21. justify-content: space-between;
  22. height: 70px !important;
  23. .title{
  24. color: white;
  25. position: absolute;
  26. font-size: 30px;
  27. font-weight: 700;
  28. left: 50%;
  29. top: 15px;
  30. transform: translateX(-50%);
  31. }
  32. .header-left-decoration {
  33. width: 25%;
  34. height: 60px;
  35. }
  36. .header-right-decoration {
  37. width: 25%;
  38. height: 60PX;
  39. }
  40. .header-center-decoration {
  41. width: 40%;
  42. margin-top: 20px;
  43. }
  44. }
  45. </style>