Procházet zdrojové kódy

!34 修复编译报类型错误问题
Merge pull request !34 from VergLsm/ts

疯狂的狮子Li před 1 rokem
rodič
revize
73df6a1b30
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/api/system/user/index.ts

+ 1 - 1
src/api/system/user/index.ts

@@ -173,7 +173,7 @@ export const updateAuthRole = (data: { userId: string; roleIds: string }) => {
  * 查询当前部门的所有用户信息
  * @param deptId
  */
-export const listUserByDeptId = (deptId: string | number): AxiosPromise<DeptVO[]> => {
+export const listUserByDeptId = (deptId: string | number): AxiosPromise<UserVO[]> => {
   return request({
     url: "/system/user/list/dept/" + deptId,
     method: "get"