123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="style">
- <el-col :span="24" class="top">
- <topInfo></topInfo>
- </el-col>
- <el-col :span="24" class="main">
- <questionInfo></questionInfo>
- </el-col>
- <el-col :span="24" class="foot">
- <footInfo></footInfo>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import topInfo from '@/layout/common/topInfo.vue';
- import footInfo from '@/layout/common/footInfo.vue';
- import questionInfo from '@question/src/views/index.vue';
- export default {
- name: 'index',
- props: {},
- components: {
- topInfo, //头部导航
- footInfo, //底部导航
- questionInfo, //问卷调查
- },
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .style {
- width: 100%;
- min-height: 667px;
- position: relative;
- background-color: #f9fafc;
- }
- .top {
- height: 46px;
- overflow: hidden;
- }
- .main {
- min-height: 570px;
- }
- .foot {
- height: 50px;
- overflow: hidden;
- }
- </style>
|