src/api/form.js
@@ -9,7 +9,16 @@ }) } // 获取专家列表 // 获取专家列表(限制处室) export function getExpertsPerList(params) { return request({ url: '/system/expert_info/perList', method: 'get', params: params }) } // 删除专家 export function delExpert(id) { return request({ url: '/system/expert_info/del/'+id, @@ -102,4 +111,13 @@ method: 'post', data: data }) } // 统一修改有效期 export function changeEmploymentDate(data) { return request({ url: '/system/expert_info/batchChangeEmploymentDate', method: 'post', data: data }) }