12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
|
|
import { http } from '@/utils/http'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 获取装备分类
|
||
|
|
*/
|
||
|
|
export const getEquipmentTypeAPI = () => {
|
||
|
|
return http({
|
||
|
|
method: 'GET',
|
||
|
|
url: `/material-mall/maType/getEquipmentType`,
|
||
|
|
})
|
||
|
|
}
|