2023-12-04 09:15:31 +08:00
|
|
|
import { post,get } from '../index'
|
|
|
|
|
|
2023-12-05 09:45:01 +08:00
|
|
|
// 获取装备列表
|
|
|
|
|
export const getList = (params = {}) => {
|
|
|
|
|
return post('/dev/list',params)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const getDetail = (id = '') => {
|
|
|
|
|
return get(`/dev/${id}`)
|
2023-12-04 09:15:31 +08:00
|
|
|
}
|