| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\controller;
- use app\api\model\Category as CategoryModel;
- use app\api\model\WxappCategory as WxappCategoryModel;
- /**
- * 商品分类控制器
- * Class Goods
- * @package app\api\controller
- */
- class Category extends Controller
- {
- /**
- * 分类页面
- * @return array
- * @throws \think\exception\DbException
- */
- public function index()
- {
- // 分类模板
- $templet = WxappCategoryModel::detail();
- // 商品分类列表
- $list = array_values(CategoryModel::getCacheTree());
- return $this->renderSuccess(compact('templet', 'list'));
- }
- }
|