This commit is contained in:
Teo
2025-09-09 09:08:34 +08:00
parent 4a9a0c4214
commit 0c3ea8fe73
13 changed files with 189 additions and 155 deletions

View File

@ -164,7 +164,7 @@ export const updateConstructionUserSalary = (data: ConstructionUserSalaryForm) =
*/
export const getConstructionUserExit = (query: ConstructionUserExitForm) => {
return request({
url: '/contractor/constructionUserExit/list',
url: '/project/constructionUserExit/list',
method: 'get',
params: query
});
@ -204,7 +204,6 @@ export const importConstructionUserInfo = (file: string) => {
});
};
// 获取项目列表
export const ProjectList = (query) => {
return request({
@ -216,7 +215,7 @@ export const ProjectList = (query) => {
// 获取班组列表
export const TeamList = (query) => {
return request({
return request({
url: '/contractor/constructionUser/teamList',
method: 'get',
params: query
@ -230,4 +229,4 @@ export const TeamDistribution = (data) => {
method: 'post',
data: data
});
};
};