feat: custom table with row children

This commit is contained in:
jialin
2024-06-12 09:26:17 +08:00
parent f491b5dfb1
commit 405d95c81f
19 changed files with 611 additions and 12 deletions
+8
View File
@@ -0,0 +1,8 @@
import { request } from '@umijs/max';
export async function queryCurrentUserState(opts?: Record<string, any>) {
return request(`/users/me`, {
method: 'GET',
...opts
});
}