From 17bc12d7414dedab9d8eb60794603e61e8cce01e Mon Sep 17 00:00:00 2001 From: Admin <978517621@qq.com> Date: 星期二, 25 十月 2022 17:20:35 +0800 Subject: [PATCH] '更新' --- src/api/workApply.js | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/api/workApply.js b/src/api/workApply.js index eb21b87..305cae4 100644 --- a/src/api/workApply.js +++ b/src/api/workApply.js @@ -15,6 +15,18 @@ }); }, + // 分页获取所有申请列表 + getAllApplyPage: (data) => { + return request({ + headers: { + 'Authorization': getToken() + }, + url: process.env.BASE_API + `/work/apply/all/page/list`, + method: 'post', + data: data + }); + }, + // 分页获取申请列表 getAllUsers: () => { return request({ @@ -146,6 +158,18 @@ }); }, + // 查询进度 + getAllStatus: (data) => { + return request({ + headers: { + 'Authorization': getToken() + }, + url: process.env.BASE_API + `/work/apply/others/view`, + method: 'post', + data: data + }); + }, + // 获取图片上传路径 getUploadUrl: (name) => { return request({ -- Gitblit v1.9.2