wechatFollowersGrowth.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Wechat Followers Growth</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. <script src="${rc.contextPath}/js/sale/echarts.js"></script>
  30. </head>
  31. <body>
  32. <!--<div id="rrapp" v-cloak>-->
  33. <header class="main-header">
  34. <div class="container-fluid coldiv">
  35. <span>添加微信好友数据:</span> <input type="number" name="wechatFollowers" id="wechatFollowers" />&nbsp;(每日添加,可追加)
  36. <input type="button" name="addButton" value="添加数据" onclick="addWechatFollowers()" />
  37. <div class="row" style="border:0;margin-bottom:10px">
  38. <span>日期:</span>
  39. <input type="month" name="startMonth" id="startMonth"/>&nbsp;
  40. <input type="month" name="endMonth" id="endMonth" />&nbsp;
  41. <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
  42. </div>
  43. </div>
  44. </header>
  45. <div class="row">
  46. <div class="col-md-12 col-sm-12 col-xs-12 charts6">
  47. <div id="main4" style="height: 200px;"></div>
  48. </div>
  49. </div>
  50. <!--</div>-->
  51. <script src="${rc.contextPath}/js/sale/wechatFollowersGrowth.js"></script>
  52. </body>
  53. </html>