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

20 lines
454 B
TypeScript

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