Category.php
3.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
namespace app\api\controller;
use app\common\controller\Api;
use fast\Tree;
/**
* 分类
*/
class Category extends Api
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
public function _initialize()
{
parent::_initialize();
$this->model = model('app\common\model\Category');
}
/**
* 分类-首页
* @ApiMethod (GET)
* @ApiRoute (/api/category/index)
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturnParams (name="data", type="object", description="扩展数据返回")
* @ApiReturn ({
'code':'1',
'msg':'返回成功'
})
*/
public function index()
{
$list = $this->model->where('type','goods')->order('weigh desc,id desc')->select();
foreach($list as $v){
$v->visible(['id','pid','name','image']);
}
$tree = Tree::instance();
$tree->init(collection($list)->toArray(), 'pid');
$list = $tree->getTreeArray(0);
// 拼接全部分类,方便前端展示
$all_list = [];
foreach($list as $v){
if($v['pid'] == 0){
$v['childlist'] = [];
$all_list[] = $v;
}
}
$all = [
"id" => 0,
"pid" => 0,
"name" => "全部",
"image" => "http://www.silk.top/uploads/20200715/a9c98c6c32fe55481fff5a0f730f9e0d.png",
"type_text" => "商品分类",
"flag_text" => "",
"spacer" => "",
"childlist" => [
[
"id" => 0,
"pid" => 0,
"name" => "全部",
"image" => "http://www.silk.top/uploads/20200715/a9c98c6c32fe55481fff5a0f730f9e0d.png",
"type_text" => "商品分类",
"flag_text" => "",
"spacer" => "",
"childlist" => $all_list
]
]
];
array_unshift($list,$all);
$this->success(__('成功'),compact('list'));
}
/**
* 分类-商品
* @ApiMethod (GET)
* @ApiParams (name="rows", type="integer", required=true, description="每页条数")
* @ApiParams (name="page", type="integer", required=true, description="页码")
* @ApiParams (name="category_id", type="integer", required=true, description="分类ID")
* @ApiReturnParams (name="code", type="integer", required=true, sample="0")
* @ApiReturnParams (name="msg", type="string", required=true, sample="返回成功")
* @ApiReturnParams (name="data", type="object", description="扩展数据返回")
* @ApiReturn ({
'code':'1',
'msg':'返回成功'
})
*/
public function goods()
{
$rows = $this->request->get('rows',null);// 每页条数
$page = $this->request->get('page',1);// 页码
$category_id = $this->request->get('category_id');
$category = $this->model->get($category_id);
empty($category) && $this->error(__('分类信息不存在'));
$has_parent = $this->model->where('pid','>','0')->where('id',$category['pid'])->find();
$where = "FIND_IN_SET('{$category_id}', category_ids)";
if($has_parent){
$where .= " OR FIND_IN_SET('{$has_parent['id']}', category_ids)";
}
$list = \app\common\model\Goods::getList($where,$page,$rows);
$this->success(__('成功'),compact('list'));
}
}