From 86687e3e362499b05587ec4d83a6b1133ce0d2b5 Mon Sep 17 00:00:00 2001 From: Admin <978517621@qq.com> Date: 星期二, 23 八月 2022 11:26:18 +0800 Subject: [PATCH] Default Changelist --- src/api/specialWorkSystem/workApply/index.ts | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/src/api/specialWorkSystem/workApply/index.ts b/src/api/specialWorkSystem/workApply/index.ts index 4bc3282..1df392e 100644 --- a/src/api/specialWorkSystem/workApply/index.ts +++ b/src/api/specialWorkSystem/workApply/index.ts @@ -3,7 +3,7 @@ export function workApplyApi() { return { // 分页获取申请列表 - getApplyListtPage: (data: object) => { + getApplyListPage: (data: object) => { return request({ url: import.meta.env.VITE_API_URL + `/work/apply/applying/page/list`, method: 'post', @@ -11,6 +11,14 @@ }); }, + // 分页获取申请列表 + getAllUsers: () => { + return request({ + url: import.meta.env.VITE_API_URL + `/account/list`, + method: 'get' + }); + }, + // 动火申请 postFireApply: (data: object) => { return request({ -- Gitblit v1.9.2