yyb
4 天以前 491585f7ad453d889f71dc549f6a4d3dee74828f
src/api/routingInspection/routingInspection.ts
@@ -34,6 +34,22 @@
      // data: params,
    });
  },
  // 拉丝巡检保存
  drawPatrolCheckInspection(data: any) {
    return request<BaseResult<any>>({
      url: "/wireInspection/drawPatrolCheckInspection?deviceUid=" + data.deviceUid,
      method: "POST",
      data: data,
    });
  },
  // 绞线巡检保存
  strandedPatrolCheckInspection(data: any) {
    return request<BaseResult<any>>({
      url: "/wireInspection/strandedPatrolCheckInspection?deviceUid=" + data.deviceUid,
      method: "POST",
      data: data,
    });
  },
};
export default RoutingInspectionApi;