2023-12-05 17:05:54 +08:00
|
|
|
import { get, post } from '../../index'
|
|
|
|
|
|
|
|
|
|
export const getGoodsClassListApi = () => {
|
2024-11-22 15:35:30 +08:00
|
|
|
return get('/material-mall/maType/getEquipmentType', {})
|
2023-12-08 20:30:52 +08:00
|
|
|
}
|
2024-11-25 18:00:42 +08:00
|
|
|
export const getCompanyListApi = () => {
|
|
|
|
|
return get('/material-mall/dev/companyList', {})
|
|
|
|
|
}
|
2024-11-23 16:31:54 +08:00
|
|
|
export const getHotSearchListApi = () => {
|
|
|
|
|
return get('/material-mall/maType/getHotSearch', {})
|
|
|
|
|
}
|
2023-12-09 17:03:25 +08:00
|
|
|
|
|
|
|
|
export const apiGetCollect = (params = {}) => {
|
2024-11-22 15:35:30 +08:00
|
|
|
return post('/zlpt-equip/dev/userCollectList', params)
|
2023-12-09 17:03:25 +08:00
|
|
|
}
|