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

15 lines
320 B
TypeScript
Raw Normal View History

2023-12-06 13:40:33 +08:00
// 订单详情
import { get, post } from '../../index'
// 申请企业信息认证接口
export const apiOrderDetails = (id: any) => {
let urlStr = `/details/${id}`
return get(urlStr, {})
}
2023-12-07 13:04:50 +08:00
export const apiOrderInfoList = (params: any) => {
let urlStr = `/info/list/`
return get(urlStr, params)
}
2023-12-06 13:40:33 +08:00
2023-12-07 13:04:50 +08:00