Zlpt_Portal/src/http/api/usercenter/goodsmang.ts

20 lines
454 B
TypeScript
Raw Normal View History

2023-12-06 09:38:11 +08:00
// 个人中心 承租下的商品管理
import { get, post } from '../../index'
// 装备入驻提交
export const equipmentDeploymentApi = (data: any) => {
2023-12-08 12:09:54 +08:00
return post('/zlpt-equip/dev', data)
2023-12-06 09:38:11 +08:00
}
// 获取商品入驻列表
export const getEquipmentListApi = (data: any) => {
2023-12-08 12:09:54 +08:00
return post('/zlpt-equip/dev/list', data)
2023-12-06 15:58:21 +08:00
}
// 商品删除接口
export const deleteGoodstApi = (data: any) => {
2023-12-08 12:09:54 +08:00
return post('/zlpt-equip/dev/remove', data)
2023-12-06 15:58:21 +08:00
}