123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Wechat Followers Growth</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>
- <script src="${rc.contextPath}/js/sale/echarts.js"></script>
- </head>
- <body>
- <!--<div id="rrapp" v-cloak>-->
- <header class="main-header">
- <div class="container-fluid coldiv">
- <span>添加微信好友数据:</span> <input type="number" name="wechatFollowers" id="wechatFollowers" /> (每日添加,可追加)
- <input type="button" name="addButton" value="添加数据" onclick="addWechatFollowers()" />
- <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="main4" style="height: 200px;"></div>
- </div>
- </div>
- <!--</div>-->
- <script src="${rc.contextPath}/js/sale/wechatFollowersGrowth.js"></script>
- </body>
- </html>
|