pyt
2025-05-13 6e48606ee4721482f2f754b21f462704fff7ccbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 })
}