diff --git a/src/views/Dashboard/HwDashboard.ts b/src/views/Dashboard/HwDashboard.ts index 6b2c478..cde2cda 100644 --- a/src/views/Dashboard/HwDashboard.ts +++ b/src/views/Dashboard/HwDashboard.ts @@ -344,10 +344,10 @@ function updateDashboardData(pcs: any[], selectedDept: string) { let isUnder = false; if (standardScore > 0 && job !== '재고PC') { - if (score < standardScore) { + if (score < standardScore * 0.6) { isUnder = true; p._spec_status = '사양 부족'; - } else if (score > standardScore * 1.2 && !win11Incompatible) { + } else if (score > standardScore * 1.5 && !win11Incompatible) { p._spec_status = '오버스펙'; criticalList.push(p); overSpecCount++; diff --git a/src/views/List/ListFactory.ts b/src/views/List/ListFactory.ts index 7cf937a..7b93566 100644 --- a/src/views/List/ListFactory.ts +++ b/src/views/List/ListFactory.ts @@ -935,10 +935,10 @@ export function createListView(container: HTMLElement, config: ListViewConfig) { let isUnder = false; if (standardScore > 0) { - if (score < standardScore) { + if (score < standardScore * 0.6) { isUnder = true; pc['_spec_status'] = '사양 부족'; - } else if (score > standardScore * 1.2 && !win11Incompatible) { + } else if (score > standardScore * 1.5 && !win11Incompatible) { pc['_spec_status'] = '오버스펙'; criticalPcList.push(pc); } else if (win11Incompatible) {