mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 10:56:39 +08:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
// 任务调度API
|
|
import {
|
|
postAxios,
|
|
getAxios
|
|
} from '@/lib/http';
|
|
export const onlineUserApi = {
|
|
// 查询在线员工列表
|
|
getOnlineUserList: (data) => {
|
|
return postAxios('/userOnLine/query', data);
|
|
}
|
|
|
|
};
|