12345678910111213141516171819202122 |
- <?php
- namespace app\api\controller\company;
- use app\models\section\SectionModel;
- use app\Request;
- use crmeb\services\UtilService;
- class SectionController
- {
- public function list(Request $request)
- {
- $where = UtilService::getMore([
- [['page', 'd'], 1],
- [['limit', 'd'], 15],
- [['status', 0], 1]
- ], $request);
- if ($where['status'] == '') $where['status'] = 1;
- $list = SectionModel::systemPage($where);
- return app('json')->successful($list);
- }
- }
|