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

8 lines
189 B
TypeScript
Raw Normal View History

2023-12-04 17:42:11 +08:00
// 个人中心 求租下的订单管理
import { get, post } from '../../index'
// 获取订单列表
export const getOrderListApi = () => {
2023-12-08 12:09:54 +08:00
return get('/zlpt-order/info/list', {})
2023-12-04 17:42:11 +08:00
}