forked from integrated_whb/integrated_whb_vue
6 lines
325 B
JavaScript
6 lines
325 B
JavaScript
|
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); // 离岗管理修改
|