代码更新

This commit is contained in:
2019-07-01 16:13:59 +08:00
parent d141eb7c24
commit 86c24dc40e
30 changed files with 13731 additions and 94 deletions

View File

@@ -9,6 +9,7 @@
namespace app\controller;
use app\BaseController;
use think\facade\Config;
/**
* @title 后端公共模块
@@ -21,6 +22,15 @@ class Admin extends BaseController {
'\app\middleware\Admin'
];
protected $data = ['meta' => [], 'data' => [], 'code' => 0, 'msg' => ''];
protected $data = ['meta' => ['title'=>''], 'data' => [], 'code' => 0, 'msg' => ''];
protected function initialize(){
$config = Config::get('system');
if (!$config) {
$config = (new \app\model\Config())->lists();
Config::set($config, 'system');
}
$this->data['config'] = $config;
}
}

View File

@@ -9,6 +9,7 @@
namespace app\controller\admin;
use app\controller\Admin;
use app\model\Config as ConfigModel;
class Config extends Admin{
@@ -22,7 +23,21 @@ class Config extends Admin{
/**
* @title 系统首页
*/
public function group(){
public function group(ConfigModel $config){
if ($this->request->isAjax()) {
# code...
}else{
$this->data['id'] = $this->request->param('id', 1);
$res = $config->where(array('status' => 1, 'group' => $this->data['id']))->field('id,name,title,extra,value,remark,type')->order('sort')->select();
$this->data['list'] = $res->toArray();
return $this->data;
}
}
/**
* @title 主题设置
*/
public function themes(){
}
}

View File

@@ -13,9 +13,15 @@ use app\controller\Admin;
class Database extends Admin{
/**
* @title 系统首页
* @title 数据备份
*/
public function index(){
public function export(){
}
/**
* @title 数据导入
*/
public function import(){
}
}

View File

@@ -31,11 +31,31 @@ class Index extends Admin{
/**
* @title 后台登录
*/
public function login(){
public function login(\app\model\Member $member){
if ($this->request->isAjax()) {
Session::set('user', ['uid'=>1,'username'=>'admin']);
$username = $this->request->param('username', '');
$password = $this->request->param('password', '');
$user = $member->login($username, $password);
if ($user) {
Session::set('user', $user);
$this->data['url'] = "/admin/index/index.html";
$this->data['msg'] = "登录成功!";
}else{
Session::set('user', null);
$this->data['code'] = 1;
$this->data['msg'] = "登录失败!";
}
return $this->data;
}
}
/**
* @title 后台登出
*/
public function logout(){
Session::set('user', null);
$this->data['code'] = 0;
return $this->data;
}
}

View File

@@ -18,4 +18,11 @@ class Seo extends Admin{
public function index(){
}
/**
* @title 重写规则
*/
public function rewrite(){
}
}