12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main">
- <div class="w_1200">
- <el-col :span="24" class="common one">
- <el-col :span="12" class="left"> 左侧 </el-col>
- <el-col :span="12" class="left"> 右侧 </el-col>
- </el-col>
- <el-col :span="24" class="common two">
- <el-col :span="12" class="left"> 左侧 </el-col>
- <el-col :span="12" class="left"> 右侧 </el-col>
- </el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'index',
- props: {},
- components: {},
- data: function () {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- watch: {
- test: {
- deep: true,
- immediate: true,
- handler(val) {},
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .main {
- min-height: 500px;
- margin: 10px 0 0 0;
- .common {
- margin: 0 0 10px 0;
- .left {
- width: 49.5%;
- height: 500px;
- overflow: hidden;
- box-shadow: 0 0 4px #409eff;
- border-radius: 10px;
- margin: 0 10px 10px 0;
- padding: 10px;
- }
- .left:nth-child(2n) {
- margin: 0 0 10px 0;
- }
- }
- }
- </style>
|