haoxuan
2023-10-11 a1a6630f2eabfc78a379b5808b1bf7231a084d0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import request from "@/utils/request";
import axios from "axios"
// 获取网络配置 
export const NetworkCard = () => {
  return request({
    url: "/v1/config/net",
    method: "get",
  });
};
 
export const setworkCard = (data) => {
  return request({
    url: "/v1/config/net",
    method: "post",
    data
  });
};
// 获取生产进度 
export const getProgress = (data) => {
  return request({
    url: "/v1/plc/productProgress",
    loadingFlag:true,
    method: "post",
    data
  });
};
// 获取pLC品牌 列表
export const getMiniDictList = () => {
  return request({
    url: "/v1/plcBrand/list",
    method: "get",
  });
};
// 添加 pLC品牌 
export const addMiniDict = () => {
  return request({
    url: "/v1/plcBrand/add",
    method: "post",
  });
};
// 删除 pLC品牌 
export const deleteMiniDict = (data) => {
  return request({
    url: `v1/plcBrand/delete/${data.id}`,
    
    method: "delete",
  });
};
// 更新 pLC品牌 
export const updateMiniDict = () => {
  return request({
    url: "/v1/plcBrand/update",
    method: "put",
  });
};
// 获取plc 
export const getPlc = () => {
  return request({
    url: "/v1/config/plc",
    method: "get",
  });
};
export const setPlc = (data) => {
  return request({
    url: "/v1/config/plc",
    method: "post",
    data,
  });
};
// 设置plc
//获取任务?page= +data.page+'&pageSize='+data.pageSize
export const getTaskInfo = (data) => {
  return request({
    url: "/v1/task/get?taskMode="+data.taskMode,
    method: "get",
    data,
  });
};
// 结束任务
 
export const finishTask = (data) => {
  return request({
    url: `v1/task/finish/${data.id}`,
    method: "put",
    data,
  });
};
// 开始任务
 
export const startTask = (data) => {
  return request({
    url: `v1/task/start/${data.id}`,
    method: "get",
    loadingFlag:true,
    data,
  });
};
// 下发参数
 
export const sendProcessParams = (data) => {
  return request({
    url: `v1/task/sendProcessParams`,
    method: "post",
    loadingFlag:true,
    data,
  });
};
 
 
// 倒计时
export const countdown = (data) => {
  return request({
    url: 'v1/task/countdown',
    method: "get",
    data,
  });
};
//获取未任务 
export const getTaskUnStarted = (data) => {
  return request({
    url: "/v1/task/get/unStarted?page="+data.page+'&pageSize='+data.pageSize,
    method: "get",
    data,
  });
};
 
// 获取工艺模型列表
export const processModelList = (data) => {
  return request({
    url: "/v1/processModel/list?number="+data.number+"&page="+data.page+'&pageSize='+data.pageSize+'&procedureId='+data.procedureId,
    method: "get",
    data,
  });
};
// 更新工艺模型
export const updateProcessParams = (data) => {
  return request({
    url: "/v1/task/updateProcessParams",
    method: "post",
    data,
  });
};