From 7618e3475dc67d9f5ef03114840deb887584cfb7 Mon Sep 17 00:00:00 2001 From: Gzx1999 Date: Tue, 28 Nov 2023 19:59:43 +0800 Subject: [PATCH] add create branch api --- frontend/src/request/batch.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/request/batch.ts b/frontend/src/request/batch.ts index f5a22b0..8517681 100644 --- a/frontend/src/request/batch.ts +++ b/frontend/src/request/batch.ts @@ -25,3 +25,12 @@ export function deleteBatch(data: any) { data, }) } + +// 创建批次 +export function createBatch(data:any) { + return request({ + url: 'macList/createbatch', + method: 'post', + data + }) + } -- Gitee