import { post,get } from '../index' // 获取装备列表 export const getList = (params = {}) => { return post('/dev/list',params) } export const getDetail = (id = '') => { return get(`/dev/${id}`) }