forked from integrated_whb/integrated_whb_vue
22 lines
1.3 KiB
JavaScript
22 lines
1.3 KiB
JavaScript
import { post } from "@/request/axios.js";
|
|
|
|
export const getPlanList = (params) =>
|
|
post("/safetyinvestmentplan/list", params); // 安全投入计划列表
|
|
export const getPlanView = (params) =>
|
|
post("/safetyinvestmentplan/goEdit", params); // 安全投入计划查看
|
|
export const setPlanDelete = (params) =>
|
|
post("/safetyinvestmentplan/delete", params); // 安全投入计划删除
|
|
export const setPlanBatchDelete = (params) =>
|
|
post("/safetyinvestmentplan/deleteAll", params); // 安全投入计划批量删除
|
|
export const setPlanAdd = (params) => post("/safetyinvestmentplan/add", params); // 安全投入计划新增
|
|
export const setPlanEdit = (params) =>
|
|
post("/safetyinvestmentplan/edit", params); // 安全投入计划编辑
|
|
export const setPlanReview = (params) =>
|
|
post("/safetyinvestmentplan/editStatus", params); // 安全投入计划审核
|
|
export const getExtractionAndUseList = (params) =>
|
|
post("/safetyinvestmentuse/listAll", params); // 安全生产费用提取和使用管理列表
|
|
export const setExtractionAndUseBatchDelete = (params) =>
|
|
post("/safetyinvestmentuse/deleteAll", params); // 安全生产费用提取和使用管理批量删除
|
|
export const setExtractionAndUseAdd = (params) =>
|
|
post("/safetyinvestmentuse/add", params); // 安全生产费用提取和使用管理新增
|