14 lines
387 B
JavaScript
14 lines
387 B
JavaScript
|
|
/**
|
||
|
|
* 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);
|