1
0

monthlyCustomers.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Monthly Customers & Avg Basket</title>
  6. #parse("sys/header.html")
  7. <style>
  8. .coldiv {
  9. background-color: #f8f8f9;
  10. }
  11. body {
  12. color: #515a6e;
  13. }
  14. #refreshTime, #storeId, #categoryId {
  15. width: 100px;
  16. }
  17. #merchSn {
  18. width: 300px;
  19. }
  20. i {
  21. font-size: 20px;
  22. }
  23. input {
  24. border: 1px #dcdee2 solid;
  25. border-radius: 5px;
  26. outline-color: #5cadff;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <!--<div id="rrapp" v-cloak>-->
  32. <header class="main-header">
  33. <div class="container-fluid coldiv">
  34. <div class="row" style="border:0;margin-bottom:10px">
  35. <span>日期:</span>
  36. <input type="month" name="startMonth" id="startMonth"/>&nbsp;
  37. <input type="month" name="endMonth" id="endMonth" />&nbsp;
  38. <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
  39. </div>
  40. </div>
  41. </header>
  42. <div class="row">
  43. <div class="col-md-12 col-sm-12 col-xs-12 charts6">
  44. <div id="main3" style="height: 200px;"></div>
  45. </div>
  46. </div>
  47. <script src="${rc.contextPath}/js/sale/echarts.js"></script>
  48. <script src="${rc.contextPath}/js/sale/monthlyCustomers.js"></script>
  49. <!--</div>-->
  50. </body>
  51. </html>