|
...
|
...
|
@@ -137,7 +137,7 @@ class GeoQuestionResLogic extends BaseLogic |
|
|
|
* @time :2025/7/21 16:36
|
|
|
|
*/
|
|
|
|
public function getSearchDate(){
|
|
|
|
$dates = $this->model->select(DB::raw('DATE(created_at) as date_only'))->distinct()->pluck('date_only');
|
|
|
|
$dates = $this->model->where('project_id',$this->user['project_id'])->select(DB::raw('DATE(created_at) as date_only'))->distinct()->pluck('date_only');
|
|
|
|
return $this->success($dates);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|