| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <el-row>
- <el-col :span="24">
- <div class="index_head">
- <h3>打造数字平台,建设魅力中国</h3>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="20" style="margin: 0">
- <el-col :span="5" :offset="2">
- <router-view name="left"/>
- </el-col>
- <el-col :span="15">
- <router-view name="rigth"/>
- </el-col>
- </el-row>
- </template>
- <script setup name="openData">
- import Breadcrumb from '../components/Breadcrumb.vue'
- </script>
- <style scoped>
- .index_head {
- background: url('../assets/index_head.jpg') no-repeat;
- background-size: 100% 100%;
- height: 120px;
- }
- .index_head h3 {
- font-size: 26px;
- color: rgb(255, 255, 255);
- text-align: center;
- line-height: 120px;
- }
- </style>
|