123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div id="index">
- <div class="w_0100">
- <div class="w_1200">
- <div class="dynamicmain">
- <el-col :span="12">展示成果</el-col>
- <el-col :span="12">达成意愿</el-col>
- <el-col :span="12">洽谈合作</el-col>
- <el-col :span="12">发布需求</el-col>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'index',
- props: {},
- components: {},
- data: () => {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped></style>
|