Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.htm 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. {include file="public/layout" /}
  2. <script type="text/javascript" src="__PUBLIC__/plugins/Echarts/echarts.min.js"></script>
  3. <link href="__SKIN__/css/main_new.css?v={$version}" rel="stylesheet" type="text/css">
  4. <body style="overflow: auto; cursor: default; -moz-user-select: inherit;background-color:#F4F4F4; padding: 10px; ">
  5. <div id="append_parent"></div>
  6. <div id="ajaxwaitid"></div>
  7. {include file="shop/left" /}
  8. <div class="page" >
  9. <div class="flexigrid">
  10. <div class="mDiv">
  11. <div class="ftitle">
  12. <h3>数据统计</h3>
  13. </div>
  14. </div>
  15. <div class="list-stats">
  16. <div class="stats-con">
  17. 开始日期 &nbsp;<input type="text" class="input-txt" id="add_time" name="add_time" value="{$StartTime|date='Y-m-d H:i:s',###}" autocomplete="off">
  18. 结束日期 &nbsp;<input type="text" class="input-txt" id="add_time2" name="add_time" value="{$EndTime|date='Y-m-d H:i:s',###}" autocomplete="off">
  19. &nbsp; &nbsp;
  20. <a href="javascript:void(0);" onclick="TimeProcessing(this, null, null, 1);">一个月</a>
  21. &nbsp; &nbsp;
  22. <a href="javascript:void(0);" onclick="TimeProcessing(this, null, null, 3);">三个月</a>
  23. &nbsp; &nbsp;
  24. <a href="javascript:void(0);" onclick="TimeProcessing(this, null, null, 6);">六个月</a>
  25. &nbsp; &nbsp;
  26. <a href="javascript:void(0);" onclick="TimeProcessing(this, null, null, 9);">九个月</a>
  27. &nbsp; &nbsp;
  28. <a href="javascript:void(0);" onclick="TimeProcessing(this, null, null, 12);">一年</a>
  29. </div>
  30. <script type="text/javascript">
  31. layui.use('laydate', function() {
  32. var laydate = layui.laydate;
  33. laydate.render({
  34. elem: '#add_time', type: 'datetime',
  35. change: function(value, date, endDate) {
  36. // TimeProcessing(value);
  37. },
  38. done: function(value, date, endDate){
  39. TimeProcessing(null, value);
  40. }
  41. });
  42. laydate.render({
  43. elem: '#add_time2', type: 'datetime',
  44. change: function(value, date, endDate) {
  45. // TimeProcessing(null, null, value);
  46. },
  47. done: function(value, date, endDate){
  48. TimeProcessing(null, null, value);
  49. }
  50. });
  51. });
  52. // 处理时间并查询数据
  53. function TimeProcessing(obj, Start, End ,Year) {
  54. Start = Start ? Start : $('#add_time').val();
  55. End = End ? End : $('#add_time2').val();
  56. if (!Year && Start && End) {
  57. if (End < Start) {
  58. $('body').click();
  59. layer.msg('结束日期不可早于开始日期', {icon: 2,time: 2000});
  60. return false;
  61. }
  62. Year = 0;
  63. }
  64. if ((!End || !Start) && !Year) return false;
  65. var Url = "{:url('Statistics/GetTimeCycletData')}";
  66. $.ajax({
  67. url : Url,
  68. type : 'post',
  69. data : {StartNew:Start, EndNew:End, Year:Year, _ajax:1},
  70. dataType : 'json',
  71. success : function(res){
  72. layer.closeAll();
  73. $('#UsersNum').empty().html(res.data.UsersNum);
  74. $('#PayOrderNum').empty().html(res.data.PayOrderNum);
  75. $('#OrderSales').empty().html(res.data.OrderSales);
  76. $('#ProductNum').empty().html(res.data.ProductNum);
  77. $('#OrderUsersNum').empty().html(res.data.OrderUsersNum);
  78. $('#UsersRecharge').empty().html(res.data.UsersRecharge);
  79. if (res.data.Start) $('#add_time').val(res.data.Start);
  80. if (res.data.End) $('#add_time2').val(res.data.End);
  81. if (obj) {
  82. $('.stats-con a').css('color', '');
  83. $(obj).css('color', 'red');
  84. }
  85. }
  86. });
  87. }
  88. </script>
  89. <ul class="stats2">
  90. <li>
  91. <div class="card_box">
  92. <div class="car_box_l fl">
  93. <i class="card-icon fa fa-user"></i>
  94. </div>
  95. <div class="car_box_r fl">
  96. <h1>用户数量</h1>
  97. <p><cite id="UsersNum">{$CycletData.UsersNum}</cite></p>
  98. </div>
  99. </div>
  100. </li>
  101. <li>
  102. <div class="card_box">
  103. <div class="car_box_l fl">
  104. <i class="card-icon fa fa-shopping-cart"></i>
  105. </div>
  106. <div class="car_box_r fl">
  107. <h1>付款订单数</h1>
  108. <p><cite id="PayOrderNum">{$CycletData.PayOrderNum}</cite></p>
  109. </div>
  110. </div>
  111. </li>
  112. <li>
  113. <div class="card_box">
  114. <div class="car_box_l fl">
  115. <i class="card-icon fa fa-cubes"></i>
  116. </div>
  117. <div class="car_box_r fl">
  118. <h1>商品数量</h1>
  119. <p><cite id="ProductNum">{$CycletData.ProductNum}</cite></p>
  120. </div>
  121. </div>
  122. </li>
  123. <li>
  124. <div class="card_box">
  125. <div class="car_box_l fl">
  126. <i class="card-icon fa fa-group"></i>
  127. </div>
  128. <div class="car_box_r fl">
  129. <h1>消费人数</h1>
  130. <p><cite id="OrderUsersNum">{$CycletData.OrderUsersNum}</cite></p>
  131. </div>
  132. </div>
  133. </li>
  134. <li>
  135. <div class="card_box">
  136. <div class="car_box_l fl">
  137. <i class="card-icon fa fa-rmb"></i>
  138. </div>
  139. <div class="car_box_r fl">
  140. <h1>付款订单总额</h1>
  141. <p><cite id="OrderSales">{$CycletData.OrderSales}</cite></p>
  142. </div>
  143. </div>
  144. </li>
  145. <li>
  146. <div class="card_box">
  147. <div class="car_box_l fl">
  148. <i class="card-icon fa fa-rmb"></i>
  149. </div>
  150. <div class="car_box_r fl">
  151. <h1>用户充值总额</h1>
  152. <p><cite id="UsersRecharge">{$CycletData.UsersRecharge}</cite></p>
  153. </div>
  154. </div>
  155. </li>
  156. </ul>
  157. </div>
  158. </div>
  159. </div>
  160. <div class="page mt10">
  161. <div class="flexigrid">
  162. <div class="mDiv">
  163. <div class="ftitle">
  164. <h3>近七日交易走势</h3>
  165. </div>
  166. </div>
  167. <div class="list-stats">
  168. <div class="stats-con">
  169. <div id="stats-box" style="width:90%;height:400px;margin: 0 auto;"></div>
  170. </div>
  171. </div>
  172. </div>
  173. </div>
  174. <div class="stats-content">
  175. <div class="stats-content-l fl">
  176. <div class="flexigrid">
  177. <div class="mDiv">
  178. <div class="ftitle">
  179. <h3>商品销售榜</h3>
  180. </div>
  181. </div>
  182. <div class="list-stats">
  183. <div class="stats-con">
  184. <table border="" cellspacing="" cellpadding="" style="width: 100%;">
  185. <thead>
  186. <tr>
  187. <th class="w100 tc">
  188. <div>排名</div>
  189. </th>
  190. <th class="">
  191. <div>商品</div>
  192. </th>
  193. <th class="w100 tc">
  194. <div>销量</div>
  195. </th>
  196. <th class="w100 tc">
  197. <div>销售额</div>
  198. </th>
  199. </tr>
  200. </thead>
  201. <tbody>
  202. {volist name="$OrderSalesList" id="vo"}
  203. <tr>
  204. <td>
  205. <div class="tc">
  206. {lt name="$i" value="4"}
  207. <img src="__ROOT_DIR__/public/static/admin/images/0{$i}.png">
  208. {else/}
  209. {$i}
  210. {/lt}
  211. </div>
  212. </td>
  213. <td>
  214. <div>
  215. <a href="{:url('ShopProduct/edit', ['id'=>$vo.aid])}">{$vo.title}</a>
  216. <a href="{$vo.arcurl}" target="_blank" style="color: red;">[预览]</a>
  217. </div>
  218. </td>
  219. <td>
  220. <div class="tc">{$vo.sales_num}</div>
  221. </td>
  222. <td>
  223. <div class="tc">{$vo.sales_amount}</div>
  224. </td>
  225. </tr>
  226. {/volist}
  227. </tbody>
  228. </table>
  229. </div>
  230. </div>
  231. </div>
  232. </div>
  233. <div class="stats-content-r fr">
  234. <div class="flexigrid">
  235. <div class="mDiv">
  236. <div class="ftitle">
  237. <h3>用户消费榜</h3>
  238. </div>
  239. </div>
  240. <div class="list-stats">
  241. <div class="stats-con">
  242. <table border="" cellspacing="" cellpadding="" style="width: 100%;">
  243. <thead>
  244. <tr>
  245. <th class="w100 tc">
  246. <div>排名</div>
  247. </th>
  248. <th class="">
  249. <div>用户昵称</div>
  250. </th>
  251. <th class="w100 tc">
  252. <div>实际消费金额</div>
  253. </th>
  254. </tr>
  255. </thead>
  256. <tbody>
  257. {volist name="$UserConsumption" id="vo"}
  258. <tr>
  259. <td>
  260. <div class="tc">{lt name="$i" value="4"}<img src="__ROOT_DIR__/public/static/admin/images/0{$i}.png">{else/}{$i}{/lt}</div>
  261. </td>
  262. <td>
  263. <div>{$vo.nickname}</div>
  264. </td>
  265. <td>
  266. <div class="tc">{$vo.amount}</div>
  267. </td>
  268. </tr>
  269. {/volist}
  270. </tbody>
  271. </table>
  272. </div>
  273. </div>
  274. </div>
  275. </div>
  276. </div>
  277. <script type="text/javascript">
  278. try{
  279. if (typeof(eval('is_conceal_1649209614'))=="function" && is_conceal_1649209614()){
  280. $(".page").css("margin-left","");
  281. $(".page").css("min-width","");
  282. $(".stats-content").css("min-width","");
  283. $(".stats-content").css("margin-left","");
  284. $(".stats-content").css("width","");
  285. }else{
  286. $(".page").css("margin-left","100px");
  287. $(".page").css("min-width","auto");
  288. $(".stats-content").css("display","flow-root");
  289. $(".stats-content").css("margin-bottom","auto");
  290. $(".stats-content").css("min-width","20px");
  291. $(".stats-content").css("margin-left","100px");
  292. $(".stats-content").css("width","calc(100% - 100px)");
  293. }
  294. }catch(e){}
  295. function getBeforeDate(n) {
  296. var n = n;
  297. var d = new Date();
  298. var year = d.getFullYear();
  299. var mon = d.getMonth() + 1;
  300. var day = d.getDate();
  301. if(day <= n) {
  302. if(mon > 1) {
  303. mon = mon - 1;
  304. } else {
  305. year = year - 1;
  306. mon = 12;
  307. }
  308. }
  309. d.setDate(d.getDate() - n);
  310. year = d.getFullYear();
  311. mon = d.getMonth() + 1;
  312. day = d.getDate();
  313. s = year + "-" + (mon < 10 ? ('0' + mon) : mon) + "-" + (day < 10 ? ('0' + day) : day);
  314. return s;
  315. }
  316. // 基于准备好的dom,初始化echarts实例
  317. var myChart = echarts.init(document.getElementById('stats-box'));
  318. // 指定图表的配置项和数据
  319. var option = {
  320. color: ['#3398DB', '#6be6c1'],
  321. title: {
  322. text: ''
  323. },
  324. tooltip: {
  325. trigger: 'axis',
  326. },
  327. legend: {
  328. data: ['成交量', '成交额']
  329. },
  330. grid: {
  331. left: '3%',
  332. right: '4%',
  333. bottom: '3%',
  334. containLabel: true
  335. },
  336. toolbox: {
  337. feature: {
  338. saveAsImage: {}
  339. }
  340. },
  341. xAxis: {
  342. type: 'category',
  343. boundaryGap: false,
  344. data: [getBeforeDate(6), getBeforeDate(5), getBeforeDate(4), getBeforeDate(3), getBeforeDate(2), getBeforeDate(1), getBeforeDate(0)],
  345. splitLine: {
  346. show: true,
  347. lineStyle: {
  348. color: ['#eee'],
  349. width: 1,
  350. type: 'solid'
  351. }
  352. }
  353. },
  354. yAxis: {
  355. type: 'value',
  356. splitLine: {
  357. show: true,
  358. lineStyle: {
  359. color: ['#eee'],
  360. width: 1,
  361. type: 'solid'
  362. }
  363. }
  364. },
  365. series: [{
  366. name: '成交量',
  367. type: 'line',
  368. data: ['{$DealNum.0}','{$DealNum.1}','{$DealNum.2}','{$DealNum.3}','{$DealNum.4}','{$DealNum.5}','{$DealNum.6}'],
  369. },
  370. {
  371. name: '成交额',
  372. type: 'line',
  373. data: ['{$DealAmount.0}','{$DealAmount.1}','{$DealAmount.2}','{$DealAmount.3}','{$DealAmount.4}','{$DealAmount.5}','{$DealAmount.6}'],
  374. },
  375. ]
  376. };
  377. // 使用刚指定的配置项和数据显示图表。
  378. myChart.setOption(option);
  379. </script>
  380. {include file="public/footer" /}
  381. </body>