项目建档:列表页、新建、查看

This commit is contained in:
lix
2025-06-12 17:16:06 +08:00
parent 1b8ef1b5e2
commit 94222c2b89
10 changed files with 1486 additions and 1 deletions

16
src/pages/ProjectFiles/data.d.ts vendored Normal file
View File

@ -0,0 +1,16 @@
export type TableListItem = {
id: string;
name: string;
projectCode: string;
createTime: string;
purchaseType: string;
purchaseType: string;
status: string;
version: string;
};
export type TableListPagination = {
total: number;
pageSize: number;
current: number;
};