Browse Source

一键清理

charles_c 5 months ago
parent
commit
56ed7f202d
4 changed files with 38 additions and 53 deletions
  1. 2 4
      src/pages/User/index.tsx
  2. 22 20
      src/requestErrorConfig.ts
  3. 8 10
      src/services/api.ts
  4. 6 19
      src/services/typings.d.ts

+ 2 - 4
src/pages/User/index.tsx

@@ -3,6 +3,7 @@ import {
   batchDeleteUsers,
   deleteUser,
   getUsers,
+  oneClickClear,
   updateUser,
   updateUserPoints,
 } from '@/services/api';
@@ -45,10 +46,7 @@ const UserList: React.FC = () => {
 
   const handleClear = async () => {
     try {
-      const response = await fetch(`${API_URL}/api/one-click-clear`, {
-        method: 'POST',
-      });
-      const result = await response.json();
+      const result = await oneClickClear();
       if (result.success) {
         message.success('清空成功');
         actionRef.current?.reload();

+ 22 - 20
src/requestErrorConfig.ts

@@ -28,16 +28,18 @@ export const errorConfig: RequestConfig = {
   // 错误处理: umi@3 的错误处理方案。
   errorConfig: {
     // 错误抛出
-    errorThrower: (res) => {
-      const { success, data, errorCode, errorMessage, showType } =
-        res as unknown as ResponseStructure;
-      if (!success) {
-        const error: any = new Error(errorMessage);
-        error.name = 'BizError';
-        error.info = { errorCode, errorMessage, showType, data };
-        throw error; // 抛出自制的错误
-      }
-    },
+    // errorThrower: (res) => {
+    //   const { success, data, errorCode, errorMessage, showType } =
+    //     res as unknown as ResponseStructure;
+    //   if (!success) {
+    //     const error: any = new Error(errorMessage);
+    //     console.log(222, error);
+
+    //     error.name = 'BizError';
+    //     error.info = { errorCode, errorMessage, showType, data };
+    //     throw error; // 抛出自制的错误
+    //   }
+    // },
     // 错误接收及处理
     errorHandler: (error: any, opts: any) => {
       if (opts?.skipErrorHandler) throw error;
@@ -110,15 +112,15 @@ export const errorConfig: RequestConfig = {
   ],
 
   // 响应拦截器
-  responseInterceptors: [
-    (response) => {
-      // 拦截响应数据,进行个性化处理
-      const { data } = response as unknown as ResponseStructure;
+  // responseInterceptors: [
+  //   (response) => {
+  //     // 拦截响应数据,进行个性化处理
+  //     const { data } = response as unknown as ResponseStructure;
 
-      if (data?.success === false) {
-        message.error('请求失败!');
-      }
-      return response;
-    },
-  ],
+  //     if (data?.success === false) {
+  //       message.error('请求失败!');
+  //     }
+  //     return response;
+  //   },
+  // ],
 };

+ 8 - 10
src/services/api.ts

@@ -259,6 +259,14 @@ export async function batchDeleteUsers(ids: string[]) {
     },
   });
 }
+
+//  一键清空用户积分
+export async function oneClickClear() {
+  return request<API.clearResult>(`${API_URL}/api/one-click-clear`, {
+    method: 'POST',
+  });
+}
+
 // 用户end
 
 /** 登录接口 POST /api/login/account */
@@ -284,16 +292,6 @@ export async function register(body: API.LoginParams, options?: { [key: string]:
   });
 }
 
-/** 获取当前的用户 GET /api/currentUser */
-// export async function currentUser(options?: { [key: string]: any }) {
-//   return request<{
-//     data: API.CurrentUser;
-//   }>('/api/currentUser', {
-//     method: 'GET',
-//     ...(options || {}),
-//   });
-// }
-
 // 修改积分历史
 export async function updateUserPoints(userId: string, points: number, reason: string) {
   console.log('发送积分更新请求,用户ID:', userId);

+ 6 - 19
src/services/typings.d.ts

@@ -175,6 +175,12 @@ declare namespace API {
     user?: object;
   };
 
+  type clearResult = {
+    success?: boolean;
+    error?: string;
+    data?: Object;
+  };
+
   /**
    * 用户角色枚举
    */
@@ -227,25 +233,6 @@ declare namespace API {
     success: boolean;
   };
 
-  // type ExchangeHistoryItem = {
-  //   _id: string;
-  //   user: User;
-  //   item: ExchangeItem;
-  //   status: '待兑换未审核' | '待兑换已审核' | '已兑换';
-  //   exchangeAccount: string;
-  //   address?: string;
-  //   exchangeCode?: string;
-  //   exchangeTime?: Date;
-  //   exchangeCount: number;
-  //   createdAt: Date;
-  //   updatedAt: Date;
-  // };
-
-  // type ExchangeHistoryList = {
-  //   data: ExchangeHistoryItem[];
-  //   total: number;
-  //   success: boolean;
-  // };
   type ExchangeItem = {
     id: string;
     type: string;