li.shaoyi hace 3 años
padre
commit
5b15a07d6f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/services/go/index.ts

+ 1 - 1
src/services/go/index.ts

@@ -8,7 +8,7 @@ import { Method } from 'axios';
  * @param method 请求方式
  * @returns
  */
-export function commonSearch_go(url: string, params: Object, method: Method = 'get'): Promise<any> {
+export function commonSearch_go<T>(url: string, params: T, method: Method = 'get'): Promise<any> {
     return request({
         method,
         url: goCommonSearchUrl(url),