12 lines
567 B
JavaScript
12 lines
567 B
JavaScript
|
|
/**
|
||
|
|
* api接口统一管理
|
||
|
|
*/
|
||
|
|
import {post, get, put} from '../http'
|
||
|
|
// 特种作业
|
||
|
|
// 动火作业
|
||
|
|
export const getFireSafetyPageApi = data => get('xmgl/xzSpecialOperationFireSafety/page', data); //列表接口
|
||
|
|
export const getEnterpriseInfoListApi = data => post('xmgl/enterpriseInfo/list', data); //公司列表接口
|
||
|
|
export const getFireSafetyQueryByIdApi = data => get('xmgl/xzSpecialOperationFireSafety/queryById', data); //查看详情
|
||
|
|
export const getFireSafetydeleteApi = data => post('xmgl/xzSpecialOperationFireSafety/delete', data); //删除
|
||
|
|
|