123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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;
- }
- <!--
- ul{ list-style:none; padding:0px; margin:0px; width:590px;
- height:20px; line-height:20px; border:1px solid #99CC00;
- border-top:0px; font-size:12px;}
- ul li{ display:block; width:40%; float:left;text-indent:2em}
- .th{ background:#F1FADE; font-weight:bold; border-top:1px }
- -->
- </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="date" name="startDate" id="startDate"/>
- <input type="date" name="endDate" id="endDate" />
- <input type="button" name="queryButton" value="查询" onclick="queryMonthly()" />
- <input type="button" name="exportButton" value="导出" onclick="exportMonthly()" />
- </div>
- </div>
- </header>
- <div class="row">
- <div id="brandUl" style="display: inline-block"></div>
- <div id="supplierUl" style="display: inline-block"></div>
- <!-- <ul id="brandUl" class="th">-->
- <!-- </ul>-->
- <!-- <ul id="supplierUl" class="th">-->
- <!-- </ul>-->
- </div>
- <script src="${rc.contextPath}/js/sale/echarts.js"></script>
- <script src="${rc.contextPath}/js/sale/top10ByBrandAndSupplier.js"></script>
- <!--</div>-->
- </body>
- </html>
|