18 lines
1.3 KiB
JavaScript
18 lines
1.3 KiB
JavaScript
|
|
import { post } from "@/request/axios.js";
|
||
|
|
|
||
|
|
export const getChecklistInspectionRecordList = (params) =>
|
||
|
|
post("/listmanager/recordListAll", params); // 清单检查记录列表
|
||
|
|
export const getChecklistInspectionRecordDayInspectionList = (params) =>
|
||
|
|
post("/listmanager/statisticsListCheckDay", params); // 清单检查记录日检列表-风险管控清单
|
||
|
|
export const getCustomChecklistInspectionRecordDayInspectionList = (params) =>
|
||
|
|
post("/hiddenstandardCustom/statisticsListCheckDay", params); // 清单检查记录日检列表-隐患排查清单
|
||
|
|
export const getChecklistInspectionRecordWeekInspectionList = (params) =>
|
||
|
|
post("/listmanager/statisticsListCheckWeek", params); // 清单检查记录周检列表-风险管控清单
|
||
|
|
export const getCustomChecklistInspectionRecordWeekInspectionList = (params) =>
|
||
|
|
post("/hiddenstandardCustom/statisticsListCheckWeek", params); // 清单检查记录周检列表-隐患排查清单
|
||
|
|
export const getChecklistInspectionRecordTenDayInspectionList = (params) =>
|
||
|
|
post("/listmanager/statisticsListCheckTenday", params); // 清单检查记录旬检列表-风险管控清单
|
||
|
|
export const getCustomChecklistInspectionRecordTenDayInspectionList = (
|
||
|
|
params
|
||
|
|
) => post("/hiddenstandardCustom/statisticsListCheckTenday", params); // 清单检查记录旬检列表-风险管控清单
|