12345678910111213141516171819202122232425262728 |
- /**
- * 安全生产检查
- */
- import request from "@/utils/request"
- export const getList = (query) => {
- return request.get({
- url: '/client/c/statisticalReport.info/ssSafeProductInspectionResult/page',
- data: query,
- })
- }
- export const getDetail = (id) => {
- const query = {
- ssSafeProductInspectionId: id,
- }
- return request.get({
- url: '/client/c/statisticalReport.info/ssSafeProductInspectionResult/detail',
- data: query,
- })
- }
- export const update = (data) => {
- return request.post({
- url: '/client/c/statisticalReport.info/ssSafeProductInspectionResult/edit',
- data,
- })
- }
|