OpenData.vue 744 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <el-row>
  3. <el-col :span="24">
  4. <div class="index_head">
  5. <h3>打造数字平台,建设魅力中国</h3>
  6. </div>
  7. </el-col>
  8. </el-row>
  9. <el-row :gutter="20" style="margin: 0">
  10. <el-col :span="5" :offset="2">
  11. <router-view name="left"/>
  12. </el-col>
  13. <el-col :span="15">
  14. <router-view name="rigth"/>
  15. </el-col>
  16. </el-row>
  17. </template>
  18. <script setup name="openData">
  19. import Breadcrumb from '../components/Breadcrumb.vue'
  20. </script>
  21. <style scoped>
  22. .index_head {
  23. background: url('../assets/index_head.jpg') no-repeat;
  24. background-size: 100% 100%;
  25. height: 120px;
  26. }
  27. .index_head h3 {
  28. font-size: 26px;
  29. color: rgb(255, 255, 255);
  30. text-align: center;
  31. line-height: 120px;
  32. }
  33. </style>