style:我的业务
Showing
3 changed files
with
11 additions
and
1 deletions
| ... | @@ -199,4 +199,9 @@ | ... | @@ -199,4 +199,9 @@ |
| 199 | } | 199 | } |
| 200 | .business_name { | 200 | .business_name { |
| 201 | width: 330px; | 201 | width: 330px; |
| 202 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 202 | } | ||
| 203 | .noData { | ||
| 204 | text-align: center; | ||
| 205 | padding-top: 30px; | ||
| 206 | display: none; | ||
| 207 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -209,8 +209,10 @@ function paged(pageCount, curr) { | ... | @@ -209,8 +209,10 @@ function paged(pageCount, curr) { |
| 209 | }) | 209 | }) |
| 210 | if (pageCount == 0) { | 210 | if (pageCount == 0) { |
| 211 | $('#page').hide(); | 211 | $('#page').hide(); |
| 212 | $('.noData').show(); | ||
| 212 | }else { | 213 | }else { |
| 213 | $('#page').show(); | 214 | $('#page').show(); |
| 215 | $('.noData').hide(); | ||
| 214 | } | 216 | } |
| 215 | } | 217 | } |
| 216 | 218 | ... | ... |
| ... | @@ -80,6 +80,9 @@ | ... | @@ -80,6 +80,9 @@ |
| 80 | <!-- -------------预约列表--------------- --> | 80 | <!-- -------------预约列表--------------- --> |
| 81 | <div class="contentBox"> | 81 | <div class="contentBox"> |
| 82 | <ul class="appintmentList"></ul> | 82 | <ul class="appintmentList"></ul> |
| 83 | <div class="noData"> | ||
| 84 | 暂无数据 | ||
| 85 | </div> | ||
| 83 | <div id="page"></div> | 86 | <div id="page"></div> |
| 84 | </div> | 87 | </div> |
| 85 | </div> | 88 | </div> | ... | ... |
-
Please register or sign in to post a comment