|
@@ -12,7 +12,10 @@
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="common two">
|
|
<el-col :span="24" class="common two">
|
|
- <el-col :span="12" class="left"><top topText="高企政策服务"></top>高企政策服务</el-col>
|
|
|
|
|
|
+ <el-col :span="12" class="left"
|
|
|
|
+ ><top topText="高企政策服务"></top>
|
|
|
|
+ <list type="1" :list="oneList"></list>
|
|
|
|
+ </el-col>
|
|
<el-col :span="12" class="left"><top topText="创新劵服务"></top>创新劵服务</el-col>
|
|
<el-col :span="12" class="left"><top topText="创新劵服务"></top>创新劵服务</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="common thr">
|
|
<el-col :span="24" class="common thr">
|
|
@@ -40,12 +43,13 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import top from './parts/top.vue';
|
|
import top from './parts/top.vue';
|
|
|
|
+import list from './parts/list.vue';
|
|
import { btnList } from './btnList.js';
|
|
import { btnList } from './btnList.js';
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
props: {},
|
|
props: {},
|
|
- components: { top },
|
|
|
|
|
|
+ components: { top, list },
|
|
data: function () {
|
|
data: function () {
|
|
return {
|
|
return {
|
|
list: btnList,
|
|
list: btnList,
|
|
@@ -56,6 +60,12 @@ export default {
|
|
phone: [{ required: true, message: '请输入用户账号', trigger: 'blur' }],
|
|
phone: [{ required: true, message: '请输入用户账号', trigger: 'blur' }],
|
|
password: [{ required: true, message: '请输入登录密码', trigger: 'blur' }],
|
|
password: [{ required: true, message: '请输入登录密码', trigger: 'blur' }],
|
|
},
|
|
},
|
|
|
|
+ // 高企政策服务-列表
|
|
|
|
+ oneList: [
|
|
|
|
+ {
|
|
|
|
+ company: '11111',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {},
|
|
created() {},
|