fixed 后台统计优化,新增项目数
This commit is contained in:
parent
d9653e461e
commit
3580a8653d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue