From 1632ba92d37e43baf671f7d465b67d644d545cf5 Mon Sep 17 00:00:00 2001
From: ZengTao <2773468879@qq.com>
Date: 星期三, 03 一月 2024 08:06:57 +0800
Subject: [PATCH] 测试更新,添加出片队列排序
---
CanadaMes-ui/src/api/home.js | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/CanadaMes-ui/src/api/home.js b/CanadaMes-ui/src/api/home.js
index beef5bd..f281e67 100644
--- a/CanadaMes-ui/src/api/home.js
+++ b/CanadaMes-ui/src/api/home.js
@@ -198,17 +198,25 @@
})
}
-export function AddOutSliceS(data) {
+export function AddOutSliceS(FrameNo) {
return request({
- url: '/home/AddOutSliceS',
+ url: '/home/AddOutSliceS?FrameNo='+FrameNo,
method: 'post',
- data
+ data:""
})
}
export function isAllowQueues(isAllowQueue,data) {
return request({
url: '/home/isAllowQueues?isAllowQueue=' + isAllowQueue,
+ method: 'post',
+ data
+ })
+}
+
+export function isAllowReorderings(isAllowReordering,data) {
+ return request({
+ url: '/home/isAllowReorderings?isAllowReordering=' + isAllowReordering,
method: 'post',
data
})
@@ -222,4 +230,11 @@
})
}
+export function CompleteQueue(id,frameid,glassid) {
+ return request({
+ url: '/home/CompleteQueue?id=' + id+'&frameid='+frameid+'&glassid='+glassid,
+ method: 'post',
+ data:""
+ })
+}
--
Gitblit v1.8.0