Abouts.php
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace app\api\controller;
use app\common\controller\Api;
use think\Db;
/**
* 关于我们接口**
*/
class Abouts extends Api
{
protected $noNeedLogin = [];
protected $noNeedRight = '*';
public function _initialize()
{
parent::_initialize();
}
/**
* @ApiTitle (关于我们详情)
* @ApiSummary (关于我们详情)
* @ApiMethod (GET)
* @ApiRoute (/api/abouts/aboutDetail)
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
* @ApiReturn({
"code": 1,
"msg": "成功",
"time": "1553777266",
"data": [
{
"id": 1,
"title": "如何回收?",//标题
"description": "废杂铜的种类繁多,回收利用技术和工艺也有所不同",//详情
"image": "/uploads/20190320/4d82786ab0f7866110519f221cbf29a6.jpg"
}
]
})
*/
public function aboutDetail(){
if($this->request->isGet()){
$data = Db::table('gc_about')
->field('id,description,image,lng,lat')
->find();
$this->success('成功',$data);
}else{
$this->error('请求方式错误');
}
}
}