12345678910111213141516171819202122232425 |
- import {
- request
- } from '@/request/request.js';
- /*
- * 获取组织项目部门列表
- *
- *
- */
- export function getPartList(organizationId, projectId) {
- return request({
- url: `/manager/role/${organizationId}/${projectId}`,
- method: 'get'
- })
- }
- /*
- * 获取组织项目部门用户列表
- *
- *
- */
- export function getUserListByPart(data) {
- return request({
- url: `/manager/user/list/${data.organizationId}/${data.partId}`,
- method: 'post'
- })
- }
|