From de246b1cf2bc801747db2948561dbc4f37c9b1ec Mon Sep 17 00:00:00 2001 From: jl Date: Wed, 27 Nov 2024 18:33:35 +0800 Subject: [PATCH] --- Epost.TestToolsWeb/Controllers/AgvTaskApiController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Epost.TestToolsWeb/Controllers/AgvTaskApiController.cs b/Epost.TestToolsWeb/Controllers/AgvTaskApiController.cs index a468ae0..4662fa6 100644 --- a/Epost.TestToolsWeb/Controllers/AgvTaskApiController.cs +++ b/Epost.TestToolsWeb/Controllers/AgvTaskApiController.cs @@ -28,14 +28,14 @@ namespace Epost.DPS.Controllers string state = string.Empty; if (data.method == "start") { - state = "1";//任务开始启动 + state = "2";//任务开始启动 } else if (data.method == "outbin") { - state = "2";//走出储位 + state = "3";//走出储位 } else if (data.method == "end") { - state = "3"; + state = "4"; //更新任务已完成 } else if (data.method == "cancel") {