更新环境配置,修正服务地址;新增 RWA 产品管理相关组件及功能;优化表格数据展示及状态渲染逻辑

This commit is contained in:
2025-12-22 00:17:52 +07:00
parent 7423d210f4
commit 4c9cf042f0
10 changed files with 250 additions and 27 deletions

View File

@@ -22,4 +22,6 @@ declare namespace CommonType {
type RecordNullable<T> = {
[K in keyof T]?: T[K] | null;
};
type TreatyBody<T> = T extends (...args: any[]) => any ? NonNullable<Parameters<T>[0]> : never;
}