35198f86 by 任超

style:填报信息

1 parent e64efcc5
.central_area {
min-height:calc(100vh - 190px);
min-height:calc(100vh - 525px);
margin-top: 20px;
color: #4A4A4A;
}
......@@ -183,4 +183,9 @@
}
.business {
cursor: pointer;
}
\ No newline at end of file
}
.noData {
text-align: center;
padding-top: 30px;
display: none;
}
\ No newline at end of file
......
......@@ -430,6 +430,7 @@ function _saveSQR() {
sqrList = sqrList.concat(tLists)
for (var i = 0; i < sqrList.length; i++) {
sqrList[i].sqrlx = 1;
sqrList[i].sqrlb = slsqxx.sqrlb;
}
// 领证方式-邮寄地址
var addMailRecordRequest = {};
......@@ -448,7 +449,6 @@ function _saveSQR() {
data: JSON.stringify({
'bsmSlsq': slsqxx.bsmSlsq,
'gyfsbm': gyfsmc,
'sqrlb': slsqxx.sqrlb,
'lzfs': lzfs,
'sqrList': sqrList,
'addMailRecordRequest': addMailRecordRequest
......
......@@ -118,6 +118,13 @@ function paged(pageCount, curr) {
}
});
})
if (pageCount == 0 ) {
$('#page').hide();
$('.noData').show();
}else {
$('#page').show();
$('.noData').hide();
}
}
var dataList = {
......
......@@ -44,6 +44,7 @@
<div class="contentBox">
<ul class="appointment_list"></ul>
<div id="page"></div>
<div class="noData">暂无数据</div>
</div>
</div>
</div>
......