添加轮播图管理

This commit is contained in:
Anyon 2020-07-14 11:34:54 +08:00
parent 6696b97ca8
commit a1b74ef396
2 changed files with 26 additions and 1 deletions

View 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);
}
}

View File

@ -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('更新会员资料失败!');