15 lines
764 B
JavaScript
15 lines
764 B
JavaScript
import { post } from "@/request/axios.js";
|
|
|
|
export const getSafetyList = (params) =>
|
|
post("/safetystandardization/list", params); // 安全生产标准化列表
|
|
export const getSafetyAdd = (params) =>
|
|
post("/safetystandardization/add", params); // 安全生产标准化添加
|
|
export const getSafetyDel = (params) =>
|
|
post("/safetystandardization/delete", params); // 安全生产标准化删除
|
|
export const getSafetyDelAll = (params) =>
|
|
post("/safetystandardization/deleteAll", params); // 安全生产标准化删除
|
|
export const getSafetyEdit = (params) =>
|
|
post("/safetystandardization/edit", params); // 安全生产标准化编辑
|
|
export const getSafetyView = (params) =>
|
|
post("/safetystandardization/view", params); // 安全生产标准化编辑
|