e64efcc5 by 任超

style:我的业务

1 parent 4274c196
......@@ -200,3 +200,8 @@
.business_name {
width: 330px;
}
.noData {
text-align: center;
padding-top: 30px;
display: none;
}
\ No newline at end of file
......
......@@ -209,8 +209,10 @@ function paged(pageCount, curr) {
})
if (pageCount == 0) {
$('#page').hide();
$('.noData').show();
}else {
$('#page').show();
$('.noData').hide();
}
}
......
......@@ -80,6 +80,9 @@
<!-- -------------预约列表--------------- -->
<div class="contentBox">
<ul class="appintmentList"></ul>
<div class="noData">
暂无数据
</div>
<div id="page"></div>
</div>
</div>
......