storeSaleStatistics.html
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<style type="text/css">
#refund ul li { list-style-type:none; }
</style>
<div class="pageheader notab">
<h1 class="pagetitle">数据中心</h1>
<span class="pagedesc">每日销售额统计</span>
</div>
<paging>
<div id="contentwrapper" class="contentwrapper">
<div class="overviewhead" style="margin-bottom: 10px;">
<div class="line">
<div class="input">
<input type="text" id="date" name="date" date-format placeholder="日期" class="laydate-icon" onClick="laydate({istime: true, format: 'YYYY-MM-DD'})" style="width: 150px;" ng-model="dateQuery.date"/>
</div>
<a class="btn btn2 btn_blue btn_search radius50" href="javascript:void(0)" ng-click="search()"><span>搜索</span></a>
</div>
</div>
<div style="margin-top: 1%"></div>
<table cellpadding="0" cellspacing="0" border="0" class="stdtable" id="dyntable3">
<thead>
<tr align="center">
<th class="head0">日期</th>
<th class="head0">现金销售额</th>
<th class="head0">V币销售额</th>
<th class="head0">销售总金额</th>
</tr>
</thead>
<tbody>
<tr class="gradeX" ng-repeat="sale in sales" align="center">
<td>{{sale.date}}</td>
<td>{{sale.money}}</td>
<td>{{sale.integral}}</td>
<td>{{sale.total}}</td>
</tr>
</tbody>
</table>
</div>
</paging>