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
| import request from '@/axios';
|
| export const getList = (data) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/pageList',
| method: 'post',
| data,
| });
| };
|
| export const saveUpdateOrderLog = (data) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/saveUpdateOrderLog',
| method: 'post',
| data,
| });
| };
|
| // 获取工单详细信息
| export const orderLogDetails = (id) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/details',
| method: 'get',
| params: { id }, // 使用工单 ID 查询
| });
| };
| // 撤回
| export const orderLogRecall = (id) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/recall',
| method: 'get',
| params: { id }, // 使用工单 ID 查询
| });
| };
|
| // 驳回
| export const orderLogReject = (id,remaker) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/reject',
| method: 'get',
| params: { id,remaker },
| });
| };
| // 通过
| export const orderLogPass = (id) => {
| return request({
| url: '/drone-device-core/wayline/orderLog/pass',
| method: 'get',
| params: { id },
| });
| };
|
|