|
|
@ -1,9 +1,6 @@ |
|
|
|
<template> |
|
|
|
<div> |
|
|
|
<h-nav /> |
|
|
|
<div class="inner my-1"> |
|
|
|
<bread-crumb :arr="arr" /> |
|
|
|
</div> |
|
|
|
<div class="top-box"> |
|
|
|
<banner :show-page="48" /> |
|
|
|
<!-- <add-model :value="3" class="add-mol" style="height: 32px" /> --> |
|
|
@ -14,10 +11,10 @@ |
|
|
|
type="primary" |
|
|
|
>统计信息填报</a-button> |
|
|
|
</div> |
|
|
|
<div class="center-box c-box" style="margin-bottom: 160px"> |
|
|
|
<div class="center-title" style="top: 105px;"> |
|
|
|
<div class="center-box c-box" style="margin-bottom: 15px"> |
|
|
|
<div class="center-title d-flex align-center" style="top: 105px;"> |
|
|
|
<div class="circular"></div> |
|
|
|
<div style="margin-left: 40px">入驻企业名录</div> |
|
|
|
<div style="margin-left: 2rem">入驻企业名录</div> |
|
|
|
</div> |
|
|
|
<div class="center-content"> |
|
|
|
<settled-enterprise :lists="lists" @searchEnt="searchEnt" /> |
|
|
@ -37,7 +34,7 @@ import SettledEnterprise from 'components/SettledEnterprise/SettledEnterprise.vu |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'VirtualSpace', |
|
|
|
components: { HNav, BreadCrumb, SettledModel, Banner, SettledEnterprise }, |
|
|
|
components: { HNav, SettledModel, Banner, SettledEnterprise }, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
title: '虚拟众创空间', |
|
|
@ -255,4 +252,25 @@ export default { |
|
|
|
left: 40%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.center-box { |
|
|
|
|
|
|
|
background: #fff; |
|
|
|
padding: 0 1rem; |
|
|
|
|
|
|
|
} |
|
|
|
.circular { |
|
|
|
height: 20px; |
|
|
|
width: 20px; |
|
|
|
background: #13ACC4; |
|
|
|
border-radius: 50%; |
|
|
|
margin: auto 0 |
|
|
|
} |
|
|
|
|
|
|
|
.center-title { |
|
|
|
|
|
|
|
top: 10%; |
|
|
|
font-size: 26px; |
|
|
|
color: #000; |
|
|
|
} |
|
|
|
</style> |
|
|
|