top10ByBrandAndSupplier.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <!--
  29. ul{ list-style:none; padding:0px; margin:0px; width:590px;
  30. height:20px; line-height:20px; border:1px solid #99CC00;
  31. border-top:0px; font-size:12px;}
  32. ul li{ display:block; width:40%; float:left;text-indent:2em}
  33. .th{ background:#F1FADE; font-weight:bold; border-top:1px }
  34. -->
  35. </style>
  36. </head>
  37. <body>
  38. <!--<div id="rrapp" v-cloak>-->
  39. <header class="main-header">
  40. <div class="container-fluid coldiv">
  41. <div class="row" style="border:0;margin-bottom:10px">
  42. <span>日期:</span>
  43. <input type="date" name="startDate" id="startDate"/>&nbsp;
  44. <input type="date" name="endDate" id="endDate" />&nbsp;
  45. <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
  46. <input type="button" name="exportButton" value="导出" onclick="exportMonthly()" />
  47. </div>
  48. </div>
  49. </header>
  50. <div class="row">
  51. <div id="brandUl" style="display: inline-block"></div>
  52. <div id="supplierUl" style="display: inline-block"></div>
  53. <!-- <ul id="brandUl" class="th">-->
  54. <!-- </ul>-->
  55. <!-- <ul id="supplierUl" class="th">-->
  56. <!-- </ul>-->
  57. </div>
  58. <script src="${rc.contextPath}/js/sale/echarts.js"></script>
  59. <script src="${rc.contextPath}/js/sale/top10ByBrandAndSupplier.js"></script>
  60. <!--</div>-->
  61. </body>
  62. </html>