修改发布增加拖动

This commit is contained in:
筱野
2025-08-31 20:19:10 +08:00
parent 721a9fab9d
commit f5aff7ce73
16 changed files with 399 additions and 115 deletions

View File

@@ -25,8 +25,8 @@ export interface PublishBallData {
skill_level_max: number // 水平要求(NTRP)
description: string // 备注
description_tag: string[] // 备注标签
is_substitute_supported: boolean // 是否支持替补
is_wechat_contact: boolean // 是否需要微信联系
is_substitute_supported?: boolean // 是否支持替补
is_wechat_contact?: boolean // 是否需要微信联系
wechat_contact?: string // 微信联系
}
@@ -123,8 +123,8 @@ class PublishService {
showLoading: false })
}
// 畅打发布
async create_play_pmoothly(data: PublishBallData): Promise<ApiResponse<Response>> {
return httpService.post('/games/create_play_pmoothly', data, {
async create_play_pmoothlys(data: {rows: PublishBallData[]}): Promise<ApiResponse<Response>> {
return httpService.post('/games/create_play_pmoothlys', data, {
showLoading: true,
loadingText: '发布中...'
})