|
@@ -4,6 +4,7 @@ namespace app\data\controller\api;
|
|
|
|
|
|
use app\data\model\BaseUserMessage;
|
|
|
use think\admin\Controller;
|
|
|
+use think\admin\helper\QueryHelper;
|
|
|
use think\admin\model\SystemBase;
|
|
|
|
|
|
/**
|
|
@@ -15,7 +16,7 @@ class Data extends Controller
|
|
|
{
|
|
|
|
|
|
/**
|
|
|
- * 获取指定数据对象
|
|
|
+ * 获取指定数据
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
@@ -32,33 +33,32 @@ class Data extends Controller
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 获取图片内容数据
|
|
|
+ * 图片内容数据
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
*/
|
|
|
public function getSlider()
|
|
|
{
|
|
|
- $keys = input('keys', 'slider');
|
|
|
- $extra = []; // 其他数据
|
|
|
- if (in_array($keys, $extra) || isset(SystemBase::items('图片内容')[$keys])) {
|
|
|
- $this->success('获取图片内容', sysdata($keys));
|
|
|
+ $this->keys = input('keys', '首页图片');
|
|
|
+ if (isset(SystemBase::items('图片内容')[$this->keys])) {
|
|
|
+ $this->success('获取图片内容', sysdata($this->keys));
|
|
|
} else {
|
|
|
$this->error('获取图片失败', []);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 获取系统通知数据
|
|
|
- * @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);
|
|
|
+ BaseUserMessage::mQuery(null, function (QueryHelper $query) {
|
|
|
+ if (($id = input('id')) > 0) {
|
|
|
+ BaseUserMessage::mk()->where(['id' => $id])->inc('num_read')->update([]);
|
|
|
+ }
|
|
|
+ $query->equal('id')->where(['status' => 1, 'deleted' => 0]);
|
|
|
+ $this->success('获取系统通知', $query->order('sort desc,id desc')->page(true, false, false, 20));
|
|
|
+ });
|
|
|
}
|
|
|
}
|