12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <div id="foot">
- <el-row>
- <el-col :span="24" class="foot">
- <div class="w_1200">
- <el-col :span="24" v-html="topInfo.content"></el-col>
- <el-col :span="24">{{topInfo.domain}}</el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'foot',
- props: {
- topInfo: null,
- },
- components: {},
- data: () => ({}),
- created() { },
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .w_1200 {
- width: 1200px;
- margin: 0 auto;
- }
- p {
- margin: 0;
- padding: 0;
- }
- .foot {
- min-height: 100px;
- padding: 10px 0;
- text-align: center;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .text {
- padding: 5px 0;
- }
- </style>
|