feat(performance、workReport、workbench): 添加绩效表预填功能并优化工作台组件

This commit is contained in:
dk
2026-07-08 20:08:04 +08:00
parent 62b97a2fd7
commit e2094831e4
7 changed files with 187 additions and 26 deletions

View File

@@ -21,6 +21,10 @@ declare namespace Api {
actualScoreTotalCell?: string | null;
baseScoreTotalCell?: string | null;
extraScoreTotalCell?: string | null;
resultDescriptionCells?: string[] | null;
actualScoreCells?: string[] | null;
baseScoreCells?: string[] | null;
extraScoreCells?: string[] | null;
}
interface Template {
@@ -172,6 +176,12 @@ declare namespace Api {
extraScoreTotal?: string | number | null;
statusCode?: Common.SheetStatusCode | null;
}
interface PrefillData {
sourceSheetId?: string | null;
sourcePeriodMonth?: string | null;
cellValues: Record<string, string>;
}
}
namespace Team {