1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!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">
- <span>日期:</span>
- <input type="month" name="startMonth" id="startMonth"/>
- <input type="month" name="endMonth" id="endMonth" />
- <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
- </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>
|