|
@@ -79,15 +79,15 @@
|
|
|
<div class="layui-card-header">数据概览</div>
|
|
|
<ul class="layui-col-md12 topPart">
|
|
|
<li class="dayAmount">
|
|
|
- <p><cite id="wait_check">10</cite></p>
|
|
|
+ <p><cite id="today_report">10</cite></p>
|
|
|
<h4>今日新增报备</h4>
|
|
|
</li>
|
|
|
<li class="monthAmount">
|
|
|
- <p><cite id="is_check">10</cite></p>
|
|
|
+ <p><cite id="mouth_report">10</cite></p>
|
|
|
<h4>本月新增报备</h4>
|
|
|
</li>
|
|
|
<li class="yearAmount">
|
|
|
- <p><cite id="working">10</cite></p>
|
|
|
+ <p><cite id="general_report">10</cite></p>
|
|
|
<h4>总报备</h4>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -139,9 +139,9 @@
|
|
|
url: '/account/statistics/'
|
|
|
,type: 'get'
|
|
|
, done: function (res) {
|
|
|
- $('#wait_check').html(res.data.wait_check);
|
|
|
- $('#is_check').html(res.data.is_check);
|
|
|
- $('#working').html(res.data.working);
|
|
|
+ $('#today_report').html(res.data.today_report);
|
|
|
+ $('#mouth_report').html(res.data.mouth_report);
|
|
|
+ $('#general_report').html(res.data.general_report);
|
|
|
}
|
|
|
});
|
|
|
//设置饼图数据
|