flat:暂存

This commit is contained in:
Apcallover
2024-05-27 11:39:50 +08:00
parent 4fdcbd3f38
commit 128a85a994
6 changed files with 340 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
import request from "@/router/axios";
/*获取人才列表*/
export const getList = (current, size, params, groupId) => {
return request({
url: "/api/jobslink-api/serve/list",
method: "get",
params: {...params, current, size, groupId}
});
};

View File

@@ -262,3 +262,11 @@ export const removeServeLog = data =>
params: data
});
/*服务日志*/
export const getMainServeUserLog = params => {
return request({
url: "/api/jobslink-api/tenant/mainserveuserlog/listUserLog",
method: "get",
params: params
});
};