<template>
|
<div class="chuangyeDanbaoDaikuan-wrap">
|
<div class="danbaotongjibiao-box">
|
<h1>创业担保贷款统计表</h1>
|
<table class="chuangye-table-box">
|
<thead>
|
<tr>
|
<th>
|
<div class="biaotou-box">
|
<span class="time">时间</span>
|
<span class="xiaomu">项目</span>
|
</div>
|
</th>
|
<th>放贷笔数(笔)</th>
|
<th>放贷金额</th>
|
<th>直接扶持自主创业(人)</th>
|
<th>带动就业(人)</th>
|
</tr>
|
</thead>
|
<tbody>
|
<tr>
|
<th>12月</th>
|
<td>57</td>
|
<td>5327</td>
|
<td>57</td>
|
<td>57</td>
|
</tr>
|
<tr>
|
<th>1——12月累计</th>
|
<td>257</td>
|
<td>1327</td>
|
<td>57</td>
|
<td>57</td>
|
</tr>
|
<tr>
|
<th>总累计 (2003年至今)</th>
|
<td>45257</td>
|
<td>1327.5</td>
|
<td>5557</td>
|
<td>16757</td>
|
</tr>
|
</tbody>
|
</table>
|
</div>
|
<div class="danbaotongjibiao-box">
|
<h1>创业担保贷款统计表</h1>
|
<table class="chuangye-table-box">
|
<thead>
|
<tr>
|
<th>产业园名称</th>
|
<th>开园运营时间</th>
|
<th>建筑面积(万平方米)</th>
|
<th>营业收入(亿元)</br>(含代收代付)</th>
|
<th>纳税额(亿元)</th>
|
<th>引进高层次人才(人)</th>
|
</tr>
|
</thead>
|
<tbody>
|
<tr>
|
<th colspan="2">中国石家庄人力资源服务产业园</th>
|
<td>57</td>
|
<td>5327</td>
|
<td>57</td>
|
<td>57</td>
|
</tr>
|
<tr>
|
<th>高新园区</th>
|
<td>2019/6/28</td>
|
<td>1327</td>
|
<td>57</td>
|
<td>57</td>
|
<td>2357</td>
|
</tr>
|
<tr>
|
<th>桥西园区</th>
|
<td>2019/6/28</td>
|
<td>1327.5</td>
|
<td>5557</td>
|
<td>16757</td>
|
<td>16757</td>
|
</tr>
|
<tr>
|
<th>正定园区</th>
|
<td>2019/6/28</td>
|
<td>1327.5</td>
|
<td>5557</td>
|
<td>16757</td>
|
<td>16757</td>
|
</tr>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
name: "chuangyeDanbaoDaikuan",
|
data() {
|
return {
|
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
@import "../../../../assets/css/base";
|
.chuangyeDanbaoDaikuan-wrap{
|
width: 100%;
|
height: 100%;
|
.danbaotongjibiao-box{
|
margin-top: 0.078125rem /* 20/256 */;
|
h1{
|
font-size: $fontSize-30;
|
color: $color-white;
|
text-align: center;
|
line-height: 2;
|
}
|
}
|
.chuangye-table-box{
|
width: 100%;
|
border: 1Px solid $color-grey; /*no*/
|
border-collapse:collapse;
|
table-layout: fixed;
|
thead{
|
background-color: $color-blue;
|
tr{
|
height: 0.4375rem /* 112/256 */;
|
}
|
th,td{
|
color: $color-darkGrey;
|
border:1Px solid $color-grey; /*no*/
|
font-weight: 300;
|
font-size: $fontSize-28;
|
}
|
}
|
.biaotou-box{
|
position: relative;
|
&::after{
|
content: '';
|
width: calc(100%);
|
height: 1Px; /*no*/
|
background-color: $color-grey;
|
position: absolute;
|
left: -1Px;
|
top: 0;
|
transform: rotate(10deg);
|
}
|
.time{
|
position: absolute;
|
left: 0.390625rem /* 100/256 */;
|
top: 0rem;
|
font-size: $fontSize-28;
|
font-weight: 300;
|
}
|
.xiaomu{
|
position: absolute;
|
right: 0.390625rem /* 100/256 */;
|
top: -0.1171875rem /* -30/256 */;
|
font-size: $fontSize-28;
|
font-weight: 300;
|
}
|
}
|
tbody{
|
background-color: #CEF2FF;
|
th,td{
|
color: $color-darkGrey;
|
height: 0.4375rem /* 112/256 */;
|
line-height: 0.4375rem /* 112/256 */;
|
text-align: center;
|
border:1Px solid $color-grey; /*no*/
|
font-weight: 300;
|
font-size: $fontSize-28;
|
}
|
}
|
}
|
}
|
</style>
|