refactor: eslint src --fix

This commit is contained in:
2024-04-15 20:35:37 +08:00
parent c75c7092bd
commit 7ecfbb9c15
38 changed files with 187 additions and 227 deletions

View File

@@ -89,7 +89,7 @@ const { form, resetForm } = useForm<DeptReq>({
name: '',
parentId: undefined,
sort: 999,
status: 1,
status: 1
})
// 重置

View File

@@ -147,7 +147,7 @@ const onDelete = async (item: DeptResp) => {
}
// 导出
const onExport = ()=>{
const onExport = () => {
useDownload(() => exportDept(queryForm))
}