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

20 lines
438 B
TypeScript

// 个人中心 承租下的上下架页面
import { get, post } from '../../index'
// 装备上架接口
export const goodsUpApi = (data: any) => {
return post('/zlpt-equip/off', data)
}
// 装备下架接口
export const goodsDownApi = (data: any) => {
return post('/zlpt-equip/off/upOffList ', data)
}
// 装备删除接口
export const goodsDeleteApi = (data: any) => {
return post('/zlpt-equip/off/remove', data)
}