Commit ee577f52 by zhaochengxiang

oa用户

parent d9ab9a31
...@@ -15,3 +15,6 @@ export function* signout() { ...@@ -15,3 +15,6 @@ export function* signout() {
export function* getDomains() { export function* getDomains() {
return yield call(service.getDomains); return yield call(service.getDomains);
} }
export function* getOAUsers(payload) {
return yield call(service.getOAUsers, payload);
}
\ No newline at end of file
...@@ -21,4 +21,8 @@ export function queryUserSystem(payload) { ...@@ -21,4 +21,8 @@ export function queryUserSystem(payload) {
export function getDomains() { export function getDomains() {
return GetJSON("/authservice/domains"); return GetJSON("/authservice/domains");
}
export function getOAUsers(payload) {
return GetJSON("/baseservice/sync/getOAUserByFuzzy", payload)
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment