forked from integrated_whb/integrated_whb_vue
16 lines
597 B
JavaScript
16 lines
597 B
JavaScript
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);
|