无人机管理后台前端(已迁走)
shuishen
2025-04-10 ffc954aa2ce1639b097c5d0bef30bf823f445736
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
import request from '@/axios';
 
export const getList = (data) => {
  return request({
    url: '/drone-device-core/wayline/orderLog/pageList',
    method: 'post',
    data,
  });
};
 
export const createTicket = (data) => {
  return request({
    url: '/drone-device-core/wayline/orderLog/saveUpdateOrderLog',
    method: 'post',
    data,
  });
};
 
// 新增接口:获取工单详细信息
export const getTicketInfo = (id) => {
  return request({
    url: '/drone-device-core/wayline/orderLog/details',
    method: 'get',
    params: { id }, // 使用工单 ID 查询
  });
};