huminmin
2026-05-15 9a8e922ea13b9f386ce32829780f60c9204ab894
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from "@/utils/request";
 
// 查询班组长列表
export function getTeamLeaderList(query) {
    return request({
        url: "/productionTeamUserRel/leaderList",
        method: "get",
        params: query,
    });
}
 
export function getTeamMemberListByTeamLeader(query) {
    return request({
        url: "/productionTeamUserRel/memberListByLeader",
        method: "get",
        params: query,
    });
}