修复已知问题

This commit is contained in:
bobobobo
2026-01-29 00:27:31 +08:00
parent 990f2df972
commit 41c1e5ba89
36 changed files with 1353 additions and 169 deletions

View File

@@ -70,3 +70,12 @@ export const getGroupDetail = id => {
loading: false
})
}
/** 获取可参与的拼团列表 */
export const getParticipateList = id => {
return http({
url: `/api/service/groupOrder/available/${id}`,
method: 'get',
loading: false
})
}