zhgdyun/src/assets/js/api/insect.js

18 lines
550 B
JavaScript
Raw Normal View History

/**
* api接口统一管理 巡查点
*/
import { get,post } from '../http'
// 巡检点模块
export const deletePointApi = data => get('/xmgl/checkingPoint/delete', data); // 删除巡检点
export const addPointApi = data => post('/xmgl/checkingPoint/add', data); // 新建巡检点
export const getPointListApi = data => post('/xmgl/checkingPoint/selectPage', data); // 查询巡检点列表
// 巡检记录模块
export const getCheckPointApi = data => post('/xmgl/checkingPointInfo/selectPage', data); // 查询巡检点记录列表