-
-
-
- Ans智能BI You
-
-
-
- Want to add more pages? Please refer to{' '}
-
- use block
-
- 。
-
-
- );
-};
-export default Admin;
diff --git a/src/pages/Admin/UserManage/index.tsx b/src/pages/Admin/UserManage/index.tsx
new file mode 100644
index 0000000..d9ce777
--- /dev/null
+++ b/src/pages/Admin/UserManage/index.tsx
@@ -0,0 +1,134 @@
+import { listUserVOByPageUsingPOST } from '@/services/answerbi/userController';
+import type { ActionType, ProColumns } from '@ant-design/pro-components';
+import { ProTable, TableDropdown } from '@ant-design/pro-components';
+import { useRef } from 'react';
+export const waitTimePromise = async (time: number = 100) => {
+ return new Promise((resolve) => {
+ setTimeout(() => {
+ resolve(true);
+ }, time);
+ });
+};
+
+export const waitTime = async (time: number = 100) => {
+ await waitTimePromise(time);
+};
+
+const columns: ProColumns