2024-01-17 17:56:46 +08:00
|
|
|
import { post } from "@/request/axios.js";
|
|
|
|
|
|
|
|
export const getLeaveList = (params) => post("/offduty/list", params); // 离岗管理列表
|
|
|
|
export const getLeaveView = (params) => post("/offduty/goEdit", params); // 离岗管理查看
|
|
|
|
export const setLeaveEdit = (params) => post("/offduty/edit", params); // 离岗管理修改
|
2024-01-19 08:21:45 +08:00
|
|
|
export const getApprovedByList = (params) =>
|
|
|
|
post("/app/sys/listUserLeader", params); // 离岗管理获取审批人
|
|
|
|
export const setLeaveReview = (params) => post("/offduty/review", params); // 离岗管理审批
|
|
|
|
export const setLeaveCancel = (params) => post("/offduty/cancel", params); // 离岗管理取消
|
|
|
|
export const getLoginRecordList = (params) => post("/fhlog/getList", params); // 登录记录列表
|