8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
|
// 个人中心 求租下的订单管理
|
||
|
|
|
||
|
|
import { get, post } from '../../index'
|
||
|
|
|
||
|
|
// 获取订单列表
|
||
|
|
export const getOrderListApi = () => {
|
||
|
|
return get('/info/list', {})
|
||
|
|
}
|