feat : site

This commit is contained in:
2024-11-12 15:57:27 +08:00
parent 6cd80ec1df
commit 8d19882045
2 changed files with 29 additions and 4 deletions

View File

@@ -32,11 +32,11 @@ class SiteRequest extends FormRequest
'address' => 'required|string', 'address' => 'required|string',
'lng' => 'required|string', 'lng' => 'required|string',
'lat' => 'required|string', 'lat' => 'required|string',
'expected_spend_time' => 'required|string|date_format:i:s', 'expected_spend_time' => 'required|string',
'image_id' => 'sometimes|integer|exists:oss_object,id', 'image_id' => 'sometimes|integer|exists:oss_object,id',
'id' => 'required|integer|exists:site,id', 'id' => 'required|integer|exists:site,id',
'query_create_start_time' => 'sometimes|string|date|', 'query_create_start_time' => 'sometimes|string|date|required_with:query_create_end_time',
'query_create_end_time' => 'sometimes|string|date|after:query_create_start_time', 'query_create_end_time' => 'sometimes|string|date|after:query_create_start_time|different:query_create_start_time|required_with:query_create_start_time',
'query_name' => 'sometimes|string', 'query_name' => 'sometimes|string',
'query_city_id' =>'sometimes|integer|exists:system_city,id', 'query_city_id' =>'sometimes|integer|exists:system_city,id',
'query_status' =>'sometimes|integer|in:1,2', 'query_status' =>'sometimes|integer|in:1,2',

View File

@@ -184,3 +184,28 @@ Content-Type: application/x-www-form-urlencoded
Authorization: Bearer {{admin_token}} Authorization: Bearer {{admin_token}}
name=华润大厦&address=华润大厦&lng=113.26452099999997&lat=23.12916&status=1&kitchen_id=1&driver_id=1&expected_delivery_time=11:40&city_id=1 name=华润大厦&address=华润大厦&lng=113.26452099999997&lat=23.12916&status=1&kitchen_id=1&driver_id=1&expected_delivery_time=11:40&city_id=1
### 修改配送点
POST {{host}}/admin/site/edit
Content-Type: application/x-www-form-urlencoded
Authorization: Bearer {{admin_token}}
### 配送点列表
GET {{host}}/admin/site/list?limit=10
content-type: application/json
Authorization: Bearer {{admin_token}}
### 配送点信息
GET {{host}}/admin/site/info?id=1
content-type: application/json
Authorization: Bearer {{admin_token}}
### 配送点删除
GET {{host}}/admin/site/del?id=1
content-type: application/json
Authorization: Bearer {{admin_token}}
### 司机列表
GET {{host}}/admin/site/driver_list?limit=1
content-type: application/json
Authorization: Bearer {{admin_token}}