mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 12:46:43 +08:00
【银保app】上头条功能没有数据样式调整
This commit is contained in:
@@ -97,7 +97,7 @@
|
||||
</div>
|
||||
|
||||
<div v-if="dataType == 1" class="tableContent">
|
||||
<div class="tableContent_main">
|
||||
<div class="tableContent_main" >
|
||||
<table class="issueTable">
|
||||
<tr class="issueTable_tr">
|
||||
<th style="width: 16%;">排名</th>
|
||||
@@ -118,6 +118,10 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div v-if="tableData.length == 0" class="noneDataDiv">
|
||||
<img style="width:60%" src="@/assets/YB_APP/images/43.png">
|
||||
<span class="noneDataDiv_span">暂无业绩</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -132,7 +136,7 @@
|
||||
<th style="width: 19%;">保费</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr v-for="item in tableData">
|
||||
<tr v-if="tableData.length!=0" v-for="item in tableData">
|
||||
<td>TOP{{item.bfpm}}</td>
|
||||
<td>{{item.managecom2}}</td>
|
||||
<td>{{item.managecom3}}</td>
|
||||
@@ -141,6 +145,10 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div v-if="tableData.length == 0" class="noneDataDiv">
|
||||
<img style="width:60%" src="@/assets/YB_APP/images/43.png">
|
||||
<span class="noneDataDiv_span">暂无业绩</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -360,7 +368,7 @@
|
||||
background:#f2f2f2;font-weight: bold;padding: 8px 15px;border-radius: 15px;font-size: 12px;
|
||||
}
|
||||
.mainContainer_content{
|
||||
padding-top:100px;margin-left: 10px;
|
||||
padding-top:100px;margin-left: 10px;height:48vw;
|
||||
}
|
||||
.dataType1Active{
|
||||
background:#fff;color: #3949ac;font-weight: bold;font-size: 12px;padding: 10px 15px;border-top-left-radius: 5px;border-bottom-left-radius: 5px;border-right: none;letter-spacing: 1px;
|
||||
@@ -440,4 +448,10 @@
|
||||
.issueTable_tr{
|
||||
background:#4d6cc4;width: 100%;
|
||||
}
|
||||
.noneDataDiv{
|
||||
display:flex;justify-content:center;align-items:center;height:300px;position:relative;width:100%;
|
||||
}
|
||||
.noneDataDiv_span{
|
||||
position:absolute;bottom:80px;left:calc(50% - 33px);
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user