style:填报信息
Showing
4 changed files
with
15 additions
and
2 deletions
| 1 | .central_area { | 1 | .central_area { |
| 2 | min-height:calc(100vh - 190px); | 2 | min-height:calc(100vh - 525px); |
| 3 | margin-top: 20px; | 3 | margin-top: 20px; |
| 4 | color: #4A4A4A; | 4 | color: #4A4A4A; |
| 5 | } | 5 | } |
| ... | @@ -184,3 +184,8 @@ | ... | @@ -184,3 +184,8 @@ |
| 184 | .business { | 184 | .business { |
| 185 | cursor: pointer; | 185 | cursor: pointer; |
| 186 | } | 186 | } |
| 187 | .noData { | ||
| 188 | text-align: center; | ||
| 189 | padding-top: 30px; | ||
| 190 | display: none; | ||
| 191 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -430,6 +430,7 @@ function _saveSQR() { | ... | @@ -430,6 +430,7 @@ function _saveSQR() { |
| 430 | sqrList = sqrList.concat(tLists) | 430 | sqrList = sqrList.concat(tLists) |
| 431 | for (var i = 0; i < sqrList.length; i++) { | 431 | for (var i = 0; i < sqrList.length; i++) { |
| 432 | sqrList[i].sqrlx = 1; | 432 | sqrList[i].sqrlx = 1; |
| 433 | sqrList[i].sqrlb = slsqxx.sqrlb; | ||
| 433 | } | 434 | } |
| 434 | // 领证方式-邮寄地址 | 435 | // 领证方式-邮寄地址 |
| 435 | var addMailRecordRequest = {}; | 436 | var addMailRecordRequest = {}; |
| ... | @@ -448,7 +449,6 @@ function _saveSQR() { | ... | @@ -448,7 +449,6 @@ function _saveSQR() { |
| 448 | data: JSON.stringify({ | 449 | data: JSON.stringify({ |
| 449 | 'bsmSlsq': slsqxx.bsmSlsq, | 450 | 'bsmSlsq': slsqxx.bsmSlsq, |
| 450 | 'gyfsbm': gyfsmc, | 451 | 'gyfsbm': gyfsmc, |
| 451 | 'sqrlb': slsqxx.sqrlb, | ||
| 452 | 'lzfs': lzfs, | 452 | 'lzfs': lzfs, |
| 453 | 'sqrList': sqrList, | 453 | 'sqrList': sqrList, |
| 454 | 'addMailRecordRequest': addMailRecordRequest | 454 | 'addMailRecordRequest': addMailRecordRequest | ... | ... |
| ... | @@ -118,6 +118,13 @@ function paged(pageCount, curr) { | ... | @@ -118,6 +118,13 @@ function paged(pageCount, curr) { |
| 118 | } | 118 | } |
| 119 | }); | 119 | }); |
| 120 | }) | 120 | }) |
| 121 | if (pageCount == 0 ) { | ||
| 122 | $('#page').hide(); | ||
| 123 | $('.noData').show(); | ||
| 124 | }else { | ||
| 125 | $('#page').show(); | ||
| 126 | $('.noData').hide(); | ||
| 127 | } | ||
| 121 | } | 128 | } |
| 122 | 129 | ||
| 123 | var dataList = { | 130 | var dataList = { | ... | ... |
| ... | @@ -44,6 +44,7 @@ | ... | @@ -44,6 +44,7 @@ |
| 44 | <div class="contentBox"> | 44 | <div class="contentBox"> |
| 45 | <ul class="appointment_list"></ul> | 45 | <ul class="appointment_list"></ul> |
| 46 | <div id="page"></div> | 46 | <div id="page"></div> |
| 47 | <div class="noData">暂无数据</div> | ||
| 47 | </div> | 48 | </div> |
| 48 | </div> | 49 | </div> |
| 49 | </div> | 50 | </div> | ... | ... |
-
Please register or sign in to post a comment