759cc9f3 by 任超

style;首页完成

1 parent b69a2cf4
......@@ -6,18 +6,19 @@
justify-content: space-between;
&-left {
width: 40%;
width: 35%;
padding-top: 25px;
background-color: #000637;
color: #02D9FD;
}
&-right {
width: 59.5%;
width: 64.5%;
.jrgk {
background-color: #000637;
color: #02D9FD;
padding-bottom: 20px;
.header {
text-align: center;
......@@ -28,6 +29,7 @@
.gkList {
@include flex-center;
flex-direction: column;
position: relative;
li:nth-child(1) {
color: #409EFF;
......@@ -35,9 +37,59 @@
}
}
.gkList::before {
position: absolute;
right: 0;
top: 0;
content: '';
width: 1px;
height: 110px;
background: linear-gradient(180deg, #091B4C 0%, #47B5E0 56%, #091B4C 100%);
}
.zsl {
position: relative;
p {
background: url('../../image/zsl.png');
width: 200px;
height: 40px;
position: absolute;
left: 0;
bottom: 0;
background-size: cover;
margin-left: -34px;
}
}
.jrl {
margin-top: 20px;
text-align: center;
color: #E3F1FF;
.jrlList {
p {
margin: 0 3px 10px 3px;
}
}
.jrllsit1 {
p {
background: url('../../image/jrl1.png');
}
}
.jrllsit2 {
p {
background: url('../../image/jrl2.png');
}
}
.jrllsit3 {
p {
background: url('../../image/jrl3.png');
}
}
li {
color: #E3F1FF;
......@@ -167,6 +219,7 @@
/deep/tbody tr:nth-child(odd) {
background: #000637 !important;
}
.title {
text-align: center;
line-height: 36px;
......
......@@ -12,13 +12,16 @@
</div>
<!-- 陕西省接入概括列表 -->
<el-row>
<el-col :span="6">
<el-col :span="9">
<ul class="gkList">
<li>总数量</li>
<dv-digital-flop :config="config" style="height:70px;" />
<div class="zsl">
<dv-digital-flop :config="config" style="height:70px;" />
<p></p>
</div>
</ul>
</el-col>
<el-col :span="6">
<el-col :span="5">
<ul class="jrl">
<div class="jrlList jrllsit1">
<p v-for="(item, index) in jrlList" :key="index">{{ item }}</p>
......@@ -26,7 +29,7 @@
<li>日均接入量</li>
</ul>
</el-col>
<el-col :span="6">
<el-col :span="5">
<ul class="jrl">
<div class="jrlList jrllsit2">
<p v-for="(item, index) in dtjrlList" :key="index">{{ item }}</p>
......@@ -34,7 +37,7 @@
<li>日均接入量</li>
</ul>
</el-col>
<el-col :span="6">
<el-col :span="5">
<ul class="jrl">
<div class="jrlList jrllsit3">
<p v-for="(item, index) in ztzlList" :key="index">{{ item }}</p>
......@@ -79,7 +82,7 @@
<div class="jrxxlb tableClass">
<div class="title">陕西省平台接入情况</div>
<!-- 陕西省平台接入情况table -->
<lb-table ref="table" :pagination="false" :heightNum="408" :column="tableData.columns" :data="tableData.data">
<lb-table ref="table" :pagination="false" :heightNum="428" :column="tableData.columns" :data="tableData.data">
</lb-table>
</div>
</div>
......