17 lines
820 B
JavaScript
17 lines
820 B
JavaScript
|
|
/**
|
||
|
|
* api接口统一管理
|
||
|
|
*/
|
||
|
|
import { post, get } from '../http'
|
||
|
|
|
||
|
|
// 资质管理
|
||
|
|
// 企业资质预警列表
|
||
|
|
// 分页列表查询企业资质预警信息
|
||
|
|
export const getQualificationWarnInfo = data => get('xmgl/enterpriseQualificationWarn/page', data);
|
||
|
|
// 添加企业资质预警信息
|
||
|
|
export const addQualificationWarnInfo = data => post('xmgl/enterpriseQualificationWarn/add', data);
|
||
|
|
// 编辑企业资质预警信息
|
||
|
|
export const editQualificationWarnInfo = data => post('xmgl/enterpriseQualificationWarn/edit', data);
|
||
|
|
// 删除企业资质预警信息
|
||
|
|
export const deleteQualificationWarnInfo = data => post('xmgl/enterpriseQualificationWarn/delete', data);
|
||
|
|
// 通过id查询企业资质预警信息
|
||
|
|
export const getQualificationWarnInfoById = data => get('xmgl/enterpriseQualificationWarn/queryById', data);
|