Dashboard.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\User;
  5. use app\common\controller\Backend;
  6. use app\common\model\Attachment;
  7. use fast\Date;
  8. use think\Db;
  9. /**
  10. * 控制台
  11. *
  12. * @icon fa fa-dashboard
  13. * @remark 用于展示当前系统中的统计数据、统计报表及重要实时数据
  14. */
  15. class Dashboard extends Backend
  16. {
  17. /**
  18. * 查看
  19. */
  20. public function index()
  21. {
  22. try {
  23. \think\Db::execute("SET @@sql_mode='';");
  24. } catch (\Exception $e) {
  25. }
  26. $column = [];
  27. $starttime = Date::unixtime('day', -6);
  28. $endtime = Date::unixtime('day', 0, 'end');
  29. $joinlist = Db("user")->where('jointime', 'between time', [$starttime, $endtime])
  30. ->field('jointime, status, COUNT(*) AS nums, DATE_FORMAT(FROM_UNIXTIME(jointime), "%Y-%m-%d") AS join_date')
  31. ->group('join_date')
  32. ->select();
  33. for ($time = $starttime; $time <= $endtime;) {
  34. $column[] = date("Y-m-d", $time);
  35. $time += 86400;
  36. }
  37. $userlist = array_fill_keys($column, 0);
  38. foreach ($joinlist as $k => $v) {
  39. $userlist[$v['join_date']] = $v['nums'];
  40. }
  41. $dbTableList = Db::query("SHOW TABLE STATUS");
  42. $addonList = get_addon_list();
  43. $totalworkingaddon = 0;
  44. $totaladdon = count($addonList);
  45. foreach ($addonList as $index => $item) {
  46. if ($item['state']) {
  47. $totalworkingaddon += 1;
  48. }
  49. }
  50. $this->view->assign([
  51. 'totaluser' => User::count(),
  52. 'totaladdon' => $totaladdon,
  53. 'totaladmin' => Admin::count(),
  54. 'totalcategory' => \app\common\model\Category::count(),
  55. 'todayusersignup' => User::whereTime('jointime', 'today')->count(),
  56. 'todayuserlogin' => User::whereTime('logintime', 'today')->count(),
  57. 'sevendau' => User::whereTime('jointime|logintime|prevtime', '-7 days')->count(),
  58. 'thirtydau' => User::whereTime('jointime|logintime|prevtime', '-30 days')->count(),
  59. 'threednu' => User::whereTime('jointime', '-3 days')->count(),
  60. 'sevendnu' => User::whereTime('jointime', '-7 days')->count(),
  61. 'dbtablenums' => count($dbTableList),
  62. 'dbsize' => array_sum(array_map(function ($item) {
  63. return $item['Data_length'] + $item['Index_length'];
  64. }, $dbTableList)),
  65. 'totalworkingaddon' => $totalworkingaddon,
  66. 'attachmentnums' => Attachment::count(),
  67. 'attachmentsize' => Attachment::sum('filesize'),
  68. 'picturenums' => Attachment::where('mimetype', 'like', 'image/%')->count(),
  69. 'picturesize' => Attachment::where('mimetype', 'like', 'image/%')->sum('filesize'),
  70. ]);
  71. $this->assignconfig('column', array_keys($userlist));
  72. $this->assignconfig('userdata', array_values($userlist));
  73. return $this->view->fetch();
  74. }
  75. /**
  76. * 订单统计笔数
  77. */
  78. public function order(){
  79. $starttime = strtotime(date('Y-m-d',strtotime("-30 day"))); //默认30天前
  80. $endtime = strtotime(date('Y-m-d')) - 1;
  81. //接收
  82. $choicedatetime = input('choicedatetime','');
  83. if(!empty($choicedatetime)){
  84. $choicedatetime = explode(' - ',$choicedatetime);
  85. $starttime = strtotime($choicedatetime[0]);
  86. $endtime = strtotime($choicedatetime[1]) + 86399;
  87. }
  88. $this->view->assign('defaultdatetime',date('Y-m-d',$starttime).' - '.date('Y-m-d',$endtime));
  89. //dump($starttime);
  90. //dump($endtime);
  91. //过去30天
  92. $ec_date = [];
  93. $ec_ordernum = [];
  94. // $ec_orderfee = [];
  95. $whereop = $this->whereop('company_id');
  96. $whereop['status'] = 3;
  97. for($i=$starttime;$i<$endtime;$i+=86400){
  98. $starttime_i = $i;
  99. $endtime_i = $i + 86399;
  100. //dump($starttime);
  101. //日历
  102. $ec_date[] = date('Y-m-d',$starttime_i);
  103. //下单人数
  104. $whereop['finish_time'] = ['between',[$starttime_i,$endtime_i]];
  105. $ec_ordernum[] = Db::name('order')->where($whereop)->count('id');
  106. //下单金额
  107. // $ec_orderfee[] = Db::name('order')->where(['createtime'=>['between',[$starttime_i,$endtime_i]]])->sum('pay_fee');
  108. }
  109. $this->assignconfig('ec_date', $ec_date);
  110. $this->assignconfig('ec_ordernum', $ec_ordernum);
  111. // $this->assignconfig('ec_orderfee', $ec_orderfee);
  112. return $this->view->fetch();
  113. }
  114. /**
  115. * 订单统计各类型
  116. */
  117. public function orderservicetype(){
  118. $starttime = strtotime(date('Y-m-d',strtotime("-30 day"))); //默认30天前
  119. $endtime = strtotime(date('Y-m-d')) - 1;
  120. //接收
  121. $choicedatetime = input('choicedatetime','');
  122. if(!empty($choicedatetime)){
  123. $choicedatetime = explode(' - ',$choicedatetime);
  124. $starttime = strtotime($choicedatetime[0]);
  125. $endtime = strtotime($choicedatetime[1]) + 86399;
  126. }
  127. $this->view->assign('defaultdatetime',date('Y-m-d',$starttime).' - '.date('Y-m-d',$endtime));
  128. //饼图
  129. $whereop = $this->whereop('company_id');
  130. $whereop['status'] = 3;
  131. $whereop['finish_time'] = ['between',[$starttime,$endtime]];
  132. $servicetype = Db::name('servicetype')->field('id,title as name')->select();
  133. $all_count = Db::name('order')->where($whereop)->count('id');
  134. foreach($servicetype as $key => &$val){
  135. $whereop['servicetype_id'] = $val['id'];
  136. $val['value'] = Db::name('order')->where($whereop)->count('id');
  137. $val['name'] = $val['name'] . bcdiv($val['value'],$all_count,4)*100 . '%';
  138. unset($val['id']);
  139. }
  140. $this->assignconfig('servicetype', $servicetype);
  141. return $this->view->fetch();
  142. }
  143. public function datacentertwo(){
  144. $whereop = $this->whereop('company_id');
  145. $usernumber = Db::name('user_wallet')->where($whereop)->count();//充卡客户数量
  146. $summoney = Db::name('user_wallet')->where($whereop)->sum('money');//充卡余额
  147. //客户类别
  148. $comefrom_config = ['线下新客','老带新','平台引流','自然进店'];
  149. $comefrom_array = [];
  150. foreach($comefrom_config as $key => $val){
  151. $number = Db::name('user_wallet')->where($whereop)->where('comefrom',$val)->count();
  152. $comefrom_array[] = ['name'=>$val . bcdiv($number,$usernumber,4)*100 . '%','value'=>$number];
  153. }
  154. //
  155. $this->assign('usernumber', $usernumber);
  156. $this->assign('summoney', $summoney);
  157. $this->assignconfig('comefrom_array', $comefrom_array);
  158. return $this->view->fetch();
  159. }
  160. }