123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 老猫 <thinkcmf@126.com>
- // +----------------------------------------------------------------------
- namespace app\portal\controller;
- use cmf\controller\HomeBaseController;
- use app\portal\model\PortalCategoryModel;
- class ListController extends HomeBaseController
- {
- /***
- * 文章列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function index()
- {
- $id = $this->request->param('id', 0, 'intval');
- $portalCategoryModel = new PortalCategoryModel();
- $category = $portalCategoryModel->where('id', $id)->where('status', 1)->find();
-
- $this->assign('category', $category);
- $listTpl = empty($category['list_tpl']) ? 'list' : $category['list_tpl'];
- return $this->fetch('/' . $listTpl);
- }
- }
|