From 536645c987c3bbdbadba6646955aa28f10ce0a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B7=BB=E7=A0=96-JAVA=5CAdministrator?= <591141169@qq.com> Date: Fri, 14 Jun 2024 15:17:23 +0800 Subject: [PATCH] =?UTF-8?q?BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/eam/sparePartsOutLocationMain/index.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/api/eam/sparePartsOutLocationMain/index.ts b/src/api/eam/sparePartsOutLocationMain/index.ts index aa73d8cdc..f37538dff 100644 --- a/src/api/eam/sparePartsOutLocationMain/index.ts +++ b/src/api/eam/sparePartsOutLocationMain/index.ts @@ -74,20 +74,3 @@ export const exportSparePartsOutLocationMain = async (params) => { export const importTemplate = () => { return request.download({ url: '/eam/spare-parts-out-location-main/get-import-template' }) } - -// 撤回 -export const cancelSparePartsOutLocation = async (id) => { - return await request.get({ url: `/eam/spare-parts-out-location-main/cancel?id=` + id }) -} -// 审核 -export const submitExamineSparePartsOutLocation = async (id) => { - return await request.get({ url: `/eam/spare-parts-out-location-main/submitExamine?id=` + id }) -} -// 审核驳回 -export const rejectSparePartsOutLocation = async (id) => { - return await request.get({ url: `/eam/spare-parts-out-location-main/reject?id=` + id }) -} -// 审核通过 -export const approveSparePartsOutLocation = async (data) => { - return await request.post({ url: `/eam/spare-parts-out-location-main/approve`, data }) -}