1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\data\controller\api;
- use think\admin\Controller;
- /**
- * 基础数据接口
- * Class Data
- * @package app\data\controller\api
- */
- class Data extends Controller
- {
- /**
- * 获取轮播图片数据
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getSlider()
- {
- $data = sysdata(input('keys', 'slider'));
- $this->success('获取轮播图片数据', $data);
- }
- /**
- * 获取系统通知数据
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getNotify()
- {
- $query = $this->_query('DataUserNotify')->where(['status' => 1, 'deleted' => 0]);
- $result = $query->equal('id')->order('sort desc,id desc')->page(true, false, false, 20);
- $this->success('获取系统通知数据', $result);
- }
- }
|