import { post, upload } from "@/request/axios.js"; export const getAccidentInvestigationList = (params) => post("/accidentinvestigation/listForAccidentInvestigation", params); export const setAccidentInvestigationDelete = (params) => post("/accidentinvestigation/delete", params); export const addAccidentInvestigationView = (params) => upload("/accidentinvestigation/add", params); export const editAccidentInvestigation = (params) => upload("/accidentinvestigation/edit", params); export const infoAccidentInvestigation = (params) => post("/accidentinvestigation/goEdit", params);