@lina
2021-07-26T09:03:47.000000Z
字数 1845
阅读 167
爱履行
请求URL
POST
/api/upload
请求参数
file
: [file] 文件
响应
{
"status": 0,
"msg": "",
"data": {
"url": "http://admin.sabic.guangying.link/uploads/2021-07//163971627289161.jpg",
"filename": "3224_1.jpg",
"value": "/uploads/2021-07//163971627289161.jpg"
}
}
请求URL
POST
/api/production
请求参数
user_name
: [string] 上传人user_number
: [string] 编号 必须是3位的数字region_id
: [int] 分区idproduction_name
: [string] 作品名称front_cover
: [string] 封面image_urls
: [array] 其他图片 【 数组 】production_desc
: [string] 作品介绍
请求URL
GET
/api/beforeProduction/{id}
注: id 是分区的标识
请求参数
production_name
: [string] 作品名称
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 1,
"production_name": "测试1",
"front_cover": "/uploads/2021-07//508731626952442.png"
}
]
}
请求URL
GET
/api/production/{id}
注: id 是作品的标识
响应
{
"status": 0,
"msg": "",
"data": {
"id": 1,
"user_name": "wgkeep", // 上传人
"user_number": "1231", // 编号
"region_id": 1, // 地区标识
"production_name": "测试1", // 作品名称
"production_desc": "测试", // 作品介绍
"like_num": 1, // 点赞数
"status": 1, // 上下架 0下架 1上架
"be_selected": 1, // 是否晋级 0没有晋级 1晋级了
"front_cover": "/uploads/2021-07//508731626952442.png", // 封面链接
"created_at": "2021-07-22 11:16:34",
"updated_at": "2021-07-26 16:07:14",
"production_images": [ // 其他图片
{
"id": 1,
"production_id": 1,
"url": "/uploads/2021-07//508731626952442.png", // 图片链接
"name": null,
"type": 0,
"created_at": "2021-07-22 19:16:34",
"updated_at": "2021-07-22 19:16:34"
}
]
}
}
请求URL
GET
/api/region
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 1,
"region_name": "上海厂", //分区名称
"region_url": "" // 链接
},
]
}
请求URL
GET
/api/afterProduction
请求参数
production_name
: [string] 作品名称
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 1,
"production_name": "测试1", // 作品名称
"front_cover": "/uploads/2021-07//508731626952442.png", // 封面图
"like_num": 1 // 点赞数
}
]
}
请求URL
POST
/api/like/{id}
注: id 是作品的标识
响应
请求URL
PUT
/api/production/{id}
注: id 是作品的标识
请求参数
user_name
: [string] 上传人user_number
: [string] 编号 必须是3位的数字region_id
: [int] 分区idproduction_name
: [string] 作品名称front_cover
: [string] 封面image_urls
: [array] 其他图片 【 数组 】production_desc
: [string] 作品介绍