更新节点模块

This commit is contained in:
邹景立 2017-02-23 18:06:46 +08:00
parent 3f22e24693
commit 512b346daa
5 changed files with 44 additions and 7 deletions

View File

@ -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();

View File

@ -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();

View File

@ -17,5 +17,5 @@ namespace app\admin\model;
use think\Model;
class User extends Model {
}

View File

@ -11,7 +11,7 @@
<table class="table table-hover">
<thead>
<tr>
<th class='text-left'>节点代码</th>
<th class='text-left' style='padding-left:30px'>节点代码</th>
<th class='text-left'>节点名称</th>
<th class='text-left'><input data-none-auto="" data-check-target='.auth-check-box' type='checkbox'/> 权限控制</th>
<th class='text-left'><input data-none-auto="" data-check-target='.menu-check-box' type='checkbox'/> 可设为菜单</th>
@ -20,7 +20,7 @@
<tbody>
{foreach $nodes as $key=>$vo}
<tr>
<td class='text-left'>
<td class='text-left' style='padding-left:30px'>
{$vo.spl}{$vo.node}
</td>
<td><input class='layui-input layui-input-inline' style='height:28px;line-height:28px;width:auto' name='title.{$vo.node}' value="{$vo.title}"/></td>

View File

@ -1,13 +1,15 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// | Think.Admin
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/Think.Admin
// +----------------------------------------------------------------------
return [