董国庆
7 天以前 b3f4499793fa7b21f6c5d1e099d6ed170ecbe47a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import axios from '@/utils/request';
 
// 列表
export const getProjectList = (data) => {
    return axios.post('/api/t-project-team/pageList', { ...data })
}
 
// 用户列表
export const getUserList = (data) => {
    return axios.post('/system/user/list', { ...data })
}
 
// 角色列表不分页
export const getRoleList = (data) => {
    return axios.post('/system/role/listNotPage', { ...data })
}
 
// 获取项目列表 获取用户列表-不分页-根据角色筛选
export const listByRole = (data) => {
    return axios.get('/system/user/listByRole', { params:data })
}