| | |
| | | }) |
| | | } |
| | | |
| | | // 获取专家列表 |
| | | // 获取专家列表(限制处室) |
| | | export function getExpertsPerList(params) { |
| | | return request({ |
| | | url: '/system/expert_info/perList', |
| | | method: 'get', |
| | | params: params |
| | | }) |
| | | } |
| | | |
| | | // 删除专家 |
| | | export function delExpert(id) { |
| | | return request({ |
| | | url: '/expert/info/del/'+id, |
| | | method: 'get' |
| | | url: '/system/expert_info/del/'+id, |
| | | method: 'delete' |
| | | }) |
| | | } |
| | | |
| | |
| | | }) |
| | | } |
| | | |
| | | // 查询审批结果 |
| | | export function queryApprove(data) { |
| | | return request({ |
| | | url: '/system/expert_info/queryApprove', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 根据id获取专家信息 |
| | | export function getInfo(id) { |
| | | return request({ |
| | |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 统一修改有效期 |
| | | export function changeEmploymentDate(data) { |
| | | return request({ |
| | | url: '/system/expert_info/batchChangeEmploymentDate', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |