需要一个普通订单列表跟详情入口

This commit is contained in:
bobobobo
2026-01-29 00:57:07 +08:00
parent 41c1e5ba89
commit 256135f15b
6 changed files with 55 additions and 10 deletions

View File

@@ -53,6 +53,15 @@ export const addOrder = data => {
})
}
/** 创建普通订单接口 */
export const createOrder = data => {
return http({
url: '/api/service/order/normal',
method: 'post',
data
})
}
/** 我的拼团列表 */
export const getMyGroupList = data => {
return http({