From 512b346daa1444fc0b27d3f265944490af1dbce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 23 Feb 2017 18:06:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=8A=82=E7=82=B9=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Config.php | 21 +++++++++++++++++++++ application/admin/controller/Node.php | 14 ++++++++++++++ application/admin/model/User.php | 2 +- application/admin/view/node.index.html | 4 ++-- application/extra/queue.php | 10 ++++++---- 5 files changed, 44 insertions(+), 7 deletions(-) diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php index 15e6b8fc7..e291e5557 100644 --- a/application/admin/controller/Config.php +++ b/application/admin/controller/Config.php @@ -26,9 +26,21 @@ use library\Data; */ class Config extends BasicAdmin { + /** + * 当前默认数据模型 + * @var string + */ protected $table = 'SystemConfig'; + + /** + * 当前页面标题 + * @var string + */ protected $title = '网站参数配置'; + /** + * 显示系统常规配置 + */ public function index() { if (!$this->request->isPost()) { parent::_list($this->table); @@ -42,16 +54,25 @@ class Config extends BasicAdmin { } } + /** + * 文件存储配置 + */ public function file() { $this->title = '文件存储配置'; $this->index(); } + /** + * 邮件账号配置 + */ public function mail() { $this->title = '邮箱账号配置'; $this->index(); } + /** + * 短信通道账号配置 + */ public function sms() { $this->title = '短信账号配置'; $this->index(); diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php index 3b3fd6030..af2700aa5 100644 --- a/application/admin/controller/Node.php +++ b/application/admin/controller/Node.php @@ -28,8 +28,15 @@ use library\Tools; */ class Node extends BasicAdmin { + /** + * 指定当前默认模型 + * @var string + */ protected $table = 'SystemNode'; + /** + * 显示节点列表 + */ public function index() { $this->title = '系统节点管理'; $alert = [ @@ -41,6 +48,10 @@ class Node extends BasicAdmin { parent::_list($this->table, FALSE); } + /** + * 列表数据处理 + * @param $data + */ protected function _index_data_filter($data) { $nodes = []; $alias = []; @@ -58,6 +69,9 @@ class Node extends BasicAdmin { $this->assign('nodes', Tools::arr2table($nodes, 'node', 'pnode')); } + /** + * 保存节点变更 + */ public function save() { if ($this->request->isPost()) { $post = $this->request->post(); diff --git a/application/admin/model/User.php b/application/admin/model/User.php index a5f828c07..7fba80f9c 100644 --- a/application/admin/model/User.php +++ b/application/admin/model/User.php @@ -17,5 +17,5 @@ namespace app\admin\model; use think\Model; class User extends Model { - + } diff --git a/application/admin/view/node.index.html b/application/admin/view/node.index.html index cc7592190..1e7c4e6b4 100644 --- a/application/admin/view/node.index.html +++ b/application/admin/view/node.index.html @@ -11,7 +11,7 @@ - + @@ -20,7 +20,7 @@ {foreach $nodes as $key=>$vo} - diff --git a/application/extra/queue.php b/application/extra/queue.php index 57ecec63b..610a24cbc 100644 --- a/application/extra/queue.php +++ b/application/extra/queue.php @@ -1,13 +1,15 @@ +// | 开源协议 ( https://mit-license.org ) +// +---------------------------------------------------------------------- +// | github开源项目:https://github.com/zoujingli/Think.Admin // +---------------------------------------------------------------------- return [
节点代码节点代码 节点名称 权限控制 可设为菜单
+ {$vo.spl}{$vo.node}