wms后台管理系统迁移

This commit is contained in:
2025-05-09 17:11:46 +08:00
parent a2b627c1aa
commit 17321702df
348 changed files with 46856 additions and 124 deletions

View File

@@ -0,0 +1,26 @@
export namespace Table {
export interface Pageable {
pageNo: number;
pageSize: number;
total: number;
}
export interface StateProps {
tableData: any[];
pageable: Pageable;
searchParams: any;
searchInitParam: any;
totalQty: any;
details: any;
icon?: {
[key: string]: any;
};
}
}
export namespace HandleData {
export type MessageType = "" | "success" | "warning" | "info" | "error";
}
export namespace Theme {
export type GreyOrWeakType = "grey" | "weak";
}