mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace app\data\controller\api;
|
|
|
|
use app\data\model\BaseUserMessage;
|
|
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 getData()
|
|
{
|
|
$data = $this->_vali(['name.require' => '数据名称不能为空!']);
|
|
$this->success('获取数据对象', sysdata($data['name']));
|
|
}
|
|
|
|
/**
|
|
* 获取轮播图片数据
|
|
* @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()
|
|
{
|
|
$model = BaseUserMessage::mQuery()->where(['status' => 1, 'deleted' => 0]);
|
|
$result = $model->equal('id')->order('sort desc,id desc')->page(true, false, false, 20);
|
|
if (($id = input('id')) > 0) BaseUserMessage::mk()->where(['id' => $id])->inc('num_read')->update([]);
|
|
$this->success('获取系统通知', $result);
|
|
}
|
|
} |