From 2adbfd2aed024bf8fda3b85b3e7af07108329f85 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 09 十二月 2024 14:01:43 +0800 Subject: [PATCH] 修改报销表 --- src/api/form.js | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/src/api/form.js b/src/api/form.js index e4f2475..8bae826 100644 --- a/src/api/form.js +++ b/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 + }) } \ No newline at end of file -- Gitblit v1.9.2