fix(web): 修复弹窗裁切/宽度与日期选择器

This commit is contained in:
clz
2026-01-18 20:17:48 +08:00
parent f5afb0c135
commit c61691249f
9 changed files with 40 additions and 41 deletions

View File

@@ -14,8 +14,8 @@
let isLoading = $state(true);
let errorMessage = $state('');
let reviewStats: ReviewData | null = $state(null);
let allBills: CleanedBill[] = $state([]);
let reviewStats = $state<ReviewData | null>(null);
let allBills = $state<CleanedBill[]>([]);
let filterLevel = $state<'all' | 'HIGH' | 'LOW'>('all');
onMount(() => {