This commit is contained in:
蔡玲
2024-12-03 16:40:54 +08:00
parent 6e6dd6a4fc
commit 9d776c65e9
408 changed files with 498647 additions and 99 deletions

View File

@@ -0,0 +1,13 @@
var SimulationVehicleTable;
function Lu_Parse_SimulationVehicleTable(str){
if(str==""){
str="{\"Default_Charge_NodeID\":0,\"Default_Rest_NodeID\":0,\"AGV_ID\":255}";
}
SimulationVehicleTable = JSON.parse(str);
//console.log(SimulationVehicleTable);
var tmp=new Object();
tmp.AGV_ID=SimulationVehicleTable.AGV_ID;
tmp.Default_Rest_NodeID=SimulationVehicleTable.Default_Rest_NodeID;
tmp.Default_Charge_NodeID=SimulationVehicleTable.Default_Charge_NodeID;
return tmp;
}