feat: CRM 客户限制

(cherry picked from commit 6369b334e3)
This commit is contained in:
Wanwan
2023-11-11 20:50:33 +08:00
committed by shizhong
parent e7886a1224
commit f356bf8076
7 changed files with 427 additions and 2 deletions

View File

@ -37,6 +37,11 @@ export const getUserPageApi = (params: UserPageReqVO) => {
return request.get({ url: '/system/user/page', params })
}
// 查询所有用户列表
export const getAllUser = () => {
return request.get({ url: '/system/user/all' })
}
// 查询用户详情
export const getUserApi = (id: number) => {
return request.get({ url: '/system/user/get?id=' + id })