From 74a84c4c625efe3c0c728266ff6d3df32f108cf6 Mon Sep 17 00:00:00 2001
From: wu <731351411@qq.com>
Date: 星期五, 15 九月 2023 16:30:53 +0800
Subject: [PATCH] 增加进片请求字段的拼接,出片任务判定逻辑更改。

---
 CanadaMes-ui/src/api/home.js |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/CanadaMes-ui/src/api/home.js b/CanadaMes-ui/src/api/home.js
index b63aef2..fa70d72 100644
--- a/CanadaMes-ui/src/api/home.js
+++ b/CanadaMes-ui/src/api/home.js
@@ -42,3 +42,43 @@
         data :""
     })
 }
+
+export function UpdateTask(types,glassid,shelfrack) {
+    return request({
+        url: '/home/UpdateTask?types=' + types + '&glassid='+glassid+'&shelfrack='+shelfrack,
+        method: 'get',
+        data :""
+    })
+}
+
+export function SelectAlarmmgInfo() {
+    return request({
+        url: '/home/SelectAlarmmgInfo',
+        method: 'get',
+        data :""
+    })
+}
+
+export function SelectCageInfo(cage) {
+    return request({
+        url: '/home/SelectCageInfo?cage='+cage,
+        method: 'get',
+        data :""
+    })
+}
+
+export function DeleteByGlassID(glassid) {
+    return request({
+        url: '/home/DeleteByGlassID?glassid='+glassid,
+        method: 'get',
+        data :""
+    })
+}
+
+export function OutByGlassID(glassid) {
+    return request({
+        url: '/home/OutByGlassID?glassid='+glassid,
+        method: 'get',
+        data :""
+    })
+}

--
Gitblit v1.8.0