12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en" style="background-color: #f5f5f5;">
- <head>
- <meta charset="UTF-8">
- <title>商品分析</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <script src="../../admin/index.js" door type="text/javascript" charset="utf-8"></script>
- <script>
- require('js/echarts.min.js');
- </script>
- <script type="text/html" id="totalTpl">
- <div class="layui-col-md3">
- <span>{{d.productTotalNumber}}</span>
- <p>商品数量</p>
- </div>
- <div class="layui-col-md3">
- <span>{{d.productTradedPercent}}</span>
- <p>商品动销率</p>
- </div>
- <div class="layui-col-md3">
- <span>{{d.tradedNumber}}</span>
- <p>动销商品件数</p>
- </div>
- <div class="layui-col-md3">
- <span>{{d.tradedAmount}}</span>
- <p>动销商品金额</p>
- </div>
- </script>
- </head>
- <body>
- <div class="layui-fluid">
- <div class="layui-card">
- <div class="layui-tab-content">
- <div class="layui-row layui-col-space15 goodsTotal">
- </div>
- <div class="layui-card-body layout-body" style="margin-top: 35px">
- <div id="goodsChart" style="width: 100%; height: 400px;"></div>
- <table id="singleGoodsTableData" lay-filter="singleGoodsTableData" class="layui-table" style="margin-top: 30px"></table>
- </div>
- </div>
- </div>
- </div>
- <script src="index.js" type="text/javascript" charset="utf-8"></script>
- </body>
- </html>
|