index.vue 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <script setup lang="ts">
  2. import left from '../../components/header/hleft.vue'
  3. import hright from '../../components/header/hright.vue'
  4. import hsearch from '../../components/header/hsearch.vue'
  5. </script>
  6. <template>
  7. <el-row justify="center">
  8. <el-col :xs="3"
  9. :sm="3"
  10. :md="3"
  11. :lg="3"
  12. :xl="2">
  13. <hright />
  14. </el-col>
  15. <el-col :xs="15"
  16. :sm="17"
  17. :md="17"
  18. :lg="17"
  19. :xl="18">
  20. <div style="height: 10px;"
  21. class="hidden-sm-and-down"></div>
  22. <hsearch />
  23. </el-col>
  24. <el-col :xs="6"
  25. :sm="4"
  26. :md="3"
  27. :lg="4"
  28. :xl="4">
  29. <div style="height: 10px;"
  30. class="hidden-sm-and-down"></div>
  31. <div class="left">
  32. <left />
  33. </div>
  34. </el-col>
  35. </el-row>
  36. </template>
  37. <style scoped>
  38. .left {
  39. display: flex;
  40. justify-content: flex-end;
  41. }
  42. </style>