From e61e4d346c46da11ad2ad1c1c8dd7f73acc26a63 Mon Sep 17 00:00:00 2001 From: Dayu <1010@qq.com> Date: Tue, 9 Jul 2024 15:03:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E5=99=A8=E5=85=B7=E5=8F=B0=E8=B4=A6?= =?UTF-8?q?=E7=94=BB=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/leger/toolinventoryrecord.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/api/leger/toolinventoryrecord.js b/src/api/leger/toolinventoryrecord.js index 2a0347d..6931de1 100644 --- a/src/api/leger/toolinventoryrecord.js +++ b/src/api/leger/toolinventoryrecord.js @@ -47,4 +47,23 @@ export const update = (row) => { data: row }) } +export const auditing = (ids) => { + return request({ + url: '/api/toolinventoryrecord/auditing', + method: 'post', + params: { + ids, + } + }) +} + +export const reject = (ids) => { + return request({ + url: '/api/toolinventoryrecord/reject', + method: 'post', + params: { + ids, + } + }) +}