quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
 
namespace app\operations\controller\statistics;
 
use app\operations\controller\Controller;
use app\operations\service\statistics\UserService;
use app\operations\service\statistics\UserRankingService;
use app\common\service\message\MessageService;
use app\common\model\order\Order;
 
/**
 * 会员数据控制器
 */
class User extends Controller
{
    /**
     * 会员数据统计
     */
    public function index()
    {
        /*$order = order::detail(2847);
        // 测试发送用户消息通知
        (new MessageService)->payment($order);*/
        return $this->renderSuccess('', [
            // 会员统计
            'user' => (new UserService())->getData(),
            // 消费排行top10
            'payRanking' => (new UserRankingService())->getUserRanking('pay'),
            // 积分排行top10
            'pointsRanking' => (new UserRankingService())->getUserRanking('points'),
            // 邀请人排行top10
            'inviteRanking' => (new UserRankingService())->getUserRanking('invite'),
        ]);
    }
 
    /**
     * 成交会员占比
     */
    public function scale($day)
    {
        return $this->renderSuccess('', [
            // 成交会员占比
            'payScale' => (new UserService())->getPayScaleData($day),
        ]);
    }
 
    /**
     * 新增会员
     */
    public function new_user($search_time)
    {
        $days = $this->getDays($search_time);
        return $this->renderSuccess('', [
            // 日期
            'days' => $days,
            // 数据
            'data' => (new UserService())->getNewUserByDate($days),
        ]);
    }
 
    /**
     * 成交会员数
     */
    public function pay_user($search_time)
    {
        $days = $this->getDays($search_time);
        return $this->renderSuccess('', [
            // 日期
            'days' => $days,
            // 数据
            'data' => (new UserService())->getPayUserByDate($days),
        ]);
    }
 
    /**
     * 获取具体日期数组
     */
    private function getDays($search_time)
    {
        //搜索时间段
        if(!isset($search_time) || empty($search_time)){
            //没有传,则默认为最近7天
            $end_time = date('Y-m-d', time());
            $start_time = date('Y-m-d', strtotime('-7 day',time()));
        }else{
            $start_time = array_shift($search_time);
            $end_time = array_pop($search_time);
        }
 
        $dt_start = strtotime($start_time);
        $dt_end = strtotime($end_time);
        $date = [];
        $date[] = date('Y-m-d', strtotime($start_time));
        while($dt_start < $dt_end) {
            $date[] = date('Y-m-d', strtotime('+1 day',$dt_start));
            $dt_start = strtotime('+1 day',$dt_start);
        }
        return $date;
    }
}