pengwei
2025-05-15 b9260c7807d064f2b77ef9e92005a8c3257ec2e1
1
2
3
4
5
6
7
8
9
import http from "../http";
 
export const AddData = (data) => http.post("/api/Parameters/AddSpeed", data);
//自动伸出缩回
export const AutoPickAndDrop = (data) => http.post(`/api/Parameters/automation?ExtendedState=${data.ExtendedState}`);
//手动伸出缩回
export const ManualOperation = (data) => http.post(`/api/Parameters/ManualOperation?position=${data.position}&ExtendedState=${data.ExtendedState}`);
//获取参数
export const GetParameter = (data) => http.post(`/api/Parameters/BackfillSpeed`);