search($where)->field($field)->when($with, function ($query) use ($with) { $query->with(['label']); })->when($page && $limit, function ($query) use ($page, $limit) { $query->page($page, $limit); })->select()->toArray(); } /** * 获取一段时间内新增人数 * @param array $where * @param array $time * @param string $timeType * @param string $countField * @param string $sumField * @param string $groupField * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function userTimeList(array $where, array $time, string $timeType = "week", string $countField = '*', string $sumField = 'pay_price', string $groupField = 'add_time') { return $this->getModel()->where($where) ->where($groupField, 'between time', $time) ->when($timeType, function ($query) use ($timeType, $countField, $sumField, $groupField) { switch ($timeType) { case "hour": $timeUnix = "%H"; break; case "week" : $timeUnix = "%w"; break; case "month" : $timeUnix = "%d"; break; case "weekly" : $timeUnix = "%W"; break; case "year" : $timeUnix = "%Y-%m"; break; default: $timeUnix = "%m-%d"; break; } $query->field("FROM_UNIXTIME(`" . $groupField . "`,'$timeUnix') as day,count(" . $countField . ") as count"); $query->group('day'); })->order('add_time asc')->select()->toArray(); } }