perf:修复大多数文件的 linter(首次)
This commit is contained in:
@@ -15,7 +15,7 @@ export interface Dept {
|
||||
}
|
||||
|
||||
/** 获取部门列表 */
|
||||
export function getDeptList(params?: { name?: string; status?: number }) {
|
||||
export function getDeptList(params?: { name?: string, status?: number }) {
|
||||
return http.get<Dept[]>('/system/dept/list', params)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { PageParam, PageResult } from '@/http/types'
|
||||
import { http } from '@/http/http'
|
||||
import { PageParam, PageResult } from '@/http/types';
|
||||
|
||||
/** 角色信息 */
|
||||
export interface Role {
|
||||
|
||||
Reference in New Issue
Block a user