fix(加班申请、工作报告、我的绩效): 重构页面样式、修复一系列bug、对不合理的地方进行调整。

This commit is contained in:
dk
2026-06-22 23:07:21 +08:00
parent b1d52b852f
commit 632c123112
30 changed files with 1574 additions and 451 deletions

View File

@@ -78,6 +78,8 @@ declare namespace Api {
}
interface TeamReportSummary {
periodStartDate?: string | null;
periodEndDate?: string | null;
totalShouldSubmit: number;
submittedCount: number;
unsubmittedCount: number;
@@ -87,7 +89,9 @@ declare namespace Api {
interface TeamReportSummaryParams {
reportType: ReportType;
periodKey: string;
periodKey?: string | null;
periodStartDate?: string | null;
periodEndDate?: string | null;
}
interface TeamReportRemindParams {