2024-03-20 17:04:34 +08:00
|
|
|
import { post } from "@/request/axios.js";
|
|
|
|
export const getSafetyDrivingCommitmentList = (params) =>
|
|
|
|
post("/drivingcommitment/listForSafetyDrivingCommitment", params); // 行车日志列表
|
|
|
|
|
|
|
|
export const setDrivingCommitmentDelete = (params) =>
|
|
|
|
post("/drivingcommitment/delete", params); // 行车日志删除
|
|
|
|
|
|
|
|
export const getSafetyDrivingCommitmentView = (params) =>
|
2024-04-01 10:04:41 +08:00
|
|
|
post("/drivingcommitment/goEdit", params); // 行车承诺详情
|
2024-03-20 17:04:34 +08:00
|
|
|
|
2024-04-01 10:04:41 +08:00
|
|
|
export const setDrivingCommitmentAdd = (params) =>
|
|
|
|
post("/drivingcommitment/add", params); // 行车承诺添加
|
|
|
|
export const setDrivingCommitmentEdit = (params) =>
|
|
|
|
post("/drivingcommitment/edit", params); // 行车承诺修改
|