songshankun
2023-11-15 15e2f2216d3d6c81eb495b979cdb1a46e20361c4
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
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,
  });
};
 
/**
 * 获取当前面板绑定的设备列表
 */
export function getDeviceList() {
  return request({
    url: `/v1/device/list`,
    method: 'get'
  })
}
 
/**
 * 设定当前设备配置
 */
export function apiSetCurrentDeviceConfig(data) {
  return request({
    url: `/v1/device/config`,
    method: 'post',
    data
  })
}
 
/**
 * 设定当前设备
 */
export function apiSetCurrentDevice(data) {
  return request({
    url: `/v1/device/setCurrentDeviceId`,
    method: 'post',
    data
  })
}