增加昵称和部门的匹配

This commit is contained in:
砂糖
2025-07-14 17:02:56 +08:00
parent 66169c3620
commit 4c0df26d3d
7 changed files with 168 additions and 8 deletions

10
api/oa/binding.js Normal file
View File

@@ -0,0 +1,10 @@
import request from "@/util/oaRequest"
// 根据昵称从oa系统获取对应的部门信息
export function getDeptNameByNickName(nicknames) {
return request({
url: '/fadapp/auth/dept-names-by-nicks',
data: nicknames,
method: "post"
})
}