diff --git a/app/controllers/admins/dashboards_controller.rb b/app/controllers/admins/dashboards_controller.rb index d9e25c664..5ac1508d1 100644 --- a/app/controllers/admins/dashboards_controller.rb +++ b/app/controllers/admins/dashboards_controller.rb @@ -25,9 +25,9 @@ class Admins::DashboardsController < Admins::BaseController @month_active_project_count = Project.where(updated_on: current_month).or(Project.where(id: month_project_ids)).count # 新增项目数 - @day_new_project_count = User.where(created_on: today).count - @weekly_new_project_count = User.where(created_on: current_week).count - @month_new_project_count = User.where(created_on: current_month).count + @day_new_project_count = Project.where(created_on: today).count + @weekly_new_project_count = Project.where(created_on: current_week).count + @month_new_project_count = Project.where(created_on: current_month).count end def month_active_user