feat : http

This commit is contained in:
2024-11-11 14:16:32 +08:00
parent a4db4ec626
commit 83a38d5001
2 changed files with 29 additions and 0 deletions

View File

@@ -149,4 +149,30 @@ Authorization: Bearer {{admin_token}}
### 部门启用列表
GET {{host}}/admin/section/all_list
Content-Type: application/json
Authorization: Bearer {{admin_token}}
### 添加厨房
POST {{host}}/admin/kitchen/add
Content-Type: application/x-www-form-urlencoded
Authorization: Bearer {{admin_token}}
### 修改厨房
POST {{host}}/admin/kitchen/edit
content-type: application/x-www-form-urlencoded
Authorization: Bearer {{admin_token}}
### 厨房列表
GET {{host}}/admin/kitchen/list?limit=10
content-type: application/json
Authorization: Bearer {{admin_token}}
### 厨房信息
GET {{host}}/admin/kitchen/info?id=1
content-type: application/json
Authorization: Bearer {{admin_token}}
### 厨房删除
GET {{host}}/admin/kitchen/del?id=1
content-type: application/json
Authorization: Bearer {{admin_token}}

View File

@@ -1,5 +1,8 @@
{
"dev": {
"host": "https://new-api-pre.hehele.cc"
},
"local": {
"host": "http://api.hhl.top"
}
}