feate:对接删除队伍接口
Build and Deploy Vue3 / build (push) Successful in 5m22s
Build and Deploy Vue3 / deploy (push) Successful in 3m12s

This commit is contained in:
2025-12-31 19:07:19 +08:00
parent cf7ac515f6
commit 4d10deef86
4 changed files with 207 additions and 27 deletions
+121
View File
@@ -562,6 +562,127 @@
},
"security": []
}
},
"/api/v1/admin/activity/group_buy/remove": {
"delete": {
"summary": "删除指定队伍",
"deprecated": false,
"description": "",
"tags": [],
"parameters": [
{
"name": "group_buy_id",
"in": "query",
"description": "队伍id",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "Authorization",
"in": "header",
"description": "",
"example": "Bearer {{token}}",
"schema": {
"type": "string",
"default": "Bearer {{token}}"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/api/v1/admin/activity/group_buy/clear": {
"delete": {
"summary": "清除所有队伍",
"deprecated": false,
"description": "",
"tags": [],
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "",
"example": "Bearer {{token}}",
"schema": {
"type": "string",
"default": "Bearer {{token}}"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"security": []
}
},
"/api/v1/admin/activity/group_buy/user_clear": {
"delete": {
"summary": "清除指定用户的所有队伍",
"deprecated": false,
"description": "",
"tags": [],
"parameters": [
{
"name": "user_id",
"in": "query",
"description": "用户ID",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "Authorization",
"in": "header",
"description": "",
"example": "Bearer {{token}}",
"schema": {
"type": "string",
"default": "Bearer {{token}}"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"security": []
}
}
},
"components": {