import { post,get,put } from '../index' // 获取装备列表 export const getList = (params = {}) => { return post('/dev/list',params) } //获取装备详情 export const getDetail = (id = '') => { return get(`/dev/${id}`) } //获取 推荐装备列表 export const getHotList = (params) => { return get('/dev/hotList',params) } export const equipCollect = (params = {}) => { return put('/collect',params) } export const apiSubmitLease = (params = {}) => { return post('/details',params) }