| | |
| | | method: 'get', |
| | | }) |
| | | } |
| | | // 查询绩效人员列表 |
| | | export function listperformance(userType) { |
| | | return request({ |
| | | url: '/externalperson/group/getPersonInfo/' + userType, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | |
| | | // 查询机构管理列表 |
| | |
| | | // 修改机构管理 |
| | | export function updateOrganization(data) { |
| | | return request({ |
| | | url: '/project/organization', |
| | | method: 'put', |
| | | url: '/project/organization/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除机构管理 |
| | | export function delOrganization(id) { |
| | | return request({ |
| | | url: '/project/organization/' + id, |
| | | method: 'delete' |
| | | url: '/project/organization/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |