12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Monthly Customers & Avg Basket</title>
- #parse("sys/header.html")
- <style>
- .coldiv {
- background-color: #f8f8f9;
- }
- body {
- color: #515a6e;
- }
- #refreshTime, #storeId, #categoryId {
- width: 100px;
- }
- #merchSn {
- width: 300px;
- }
- i {
- font-size: 20px;
- }
- input {
- border: 1px #dcdee2 solid;
- border-radius: 5px;
- outline-color: #5cadff;
- }
- </style>
- </head>
- <body>
- <!--<div id="rrapp" v-cloak>-->
- <header class="main-header">
- <div class="container-fluid coldiv">
- <div class="row" style="border:0;margin-bottom:10px">
- <input type="radio" name="date" value="month" checked="checked">日期-月:
- <input type="month" name="startMonth" id="startMonth"/>
- <input type="month" name="endMonth" id="endMonth" />
- <input type="radio" name="date" value="day" >日期-日:
- <input type="date" name="startDay" id="startDay"/>
- <input type="date" name="endDay" id="endDay" />
- <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
- <input type="button" name="exportButton" value="导出" onclick="exportMonthly()" />
- </div>
- </div>
- </header>
- <div class="row">
- <div class="col-md-12 col-sm-12 col-xs-12 charts6">
- <div id="main3" style="height: 200px;"></div>
- </div>
- </div>
- <script src="${rc.contextPath}/js/sale/echarts.js"></script>
- <script src="${rc.contextPath}/js/sale/monthlyCustomers.js"></script>
- <!--</div>-->
- </body>
- </html>
|