fixed 后台统计优化,新增项目数

This commit is contained in:
xiaoxiaoqiong 2022-07-18 11:04:57 +08:00
parent d9653e461e
commit 3580a8653d
1 changed files with 3 additions and 3 deletions

View File

@ -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