mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
添加轮播图管理
This commit is contained in:
parent
6696b97ca8
commit
a1b74ef396
26
app/data/controller/api/Data.php
Normal file
26
app/data/controller/api/Data.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?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);
|
||||
}
|
||||
|
||||
}
|
@ -31,7 +31,6 @@ class Center extends Member
|
||||
foreach ($data as $key => $vo) if ($vo === '') unset($data[$key]);
|
||||
if (empty($data)) $this->error('没有需要修改的数据!');
|
||||
if ($this->app->db->name('DataMember')->where(['id' => $this->mid])->update($data) !== false) {
|
||||
// 绑定资源完成检查的任务
|
||||
$this->success('更新会员资料成功!', $this->getMember());
|
||||
} else {
|
||||
$this->error('更新会员资料失败!');
|
||||
|
Loading…
x
Reference in New Issue
Block a user