1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <?php
|
| namespace app\branch\controller\category;
|
| use app\branch\controller\Controller;
| use app\branch\model\category\Category as CategoryModel;
|
| /**
| * 分类控制器
| */
| class Category extends Controller
| {
| /**
| * 获取分类
| */
| public function index()
| {
| $model = new CategoryModel;
| $category = $model->getAll();
| return $this->renderSuccess('', compact('category'));
| }
|
|
| }
|
|