更新表格插件用法

This commit is contained in:
邹景立 2021-07-30 14:12:18 +08:00
parent 8695e8e7a2
commit 6781a7fe7d
7 changed files with 48 additions and 1923 deletions

View File

@ -18,6 +18,7 @@ namespace app\admin\controller;
use app\admin\model\SystemAuth; use app\admin\model\SystemAuth;
use think\admin\Controller; use think\admin\Controller;
use think\admin\helper\QueryHelper;
use think\admin\service\AdminService; use think\admin\service\AdminService;
/** /**
@ -44,13 +45,11 @@ class Auth extends Controller
*/ */
public function index() public function index()
{ {
if ($this->request->isGet() && input('get.output') !== 'layui.table') { $this->_query(SystemAuth::class)->layTable(function () {
$this->title = '系统权限管理'; $this->title = '系统权限管理';
$this->fetch(); }, function (QueryHelper $query) {
} else { $query->dateBetween('create_at')->like('title,desc')->equal('status,utype');
$query = $this->_query(SystemAuth::class)->dateBetween('create_at'); });
$query->like('title,desc')->equal('status,utype')->layTable();
}
} }
/** /**

View File

@ -18,6 +18,7 @@ namespace app\admin\controller;
use app\admin\model\SystemBase; use app\admin\model\SystemBase;
use think\admin\Controller; use think\admin\Controller;
use think\admin\helper\QueryHelper;
/** /**
* 数据字典管理 * 数据字典管理
@ -42,10 +43,12 @@ class Base extends Controller
*/ */
public function index() public function index()
{ {
$this->applyTypes(); $this->_query(SystemBase::class)->layTable(function () {
$this->title = '数据字典管理'; $this->applyTypes();
$query = $this->_query(SystemBase::class)->where(['deleted' => 0]); $this->title = '数据字典管理';
$query->equal('type')->like('code,name,status')->dateBetween('create_at')->layTable(); }, function (QueryHelper $query) {
$query->where(['deleted' => 0])->equal('type')->like('code,name,status')->dateBetween('create_at');
});
} }
/** /**

View File

@ -18,6 +18,7 @@ namespace app\admin\controller;
use Exception; use Exception;
use think\admin\Controller; use think\admin\Controller;
use think\admin\helper\QueryHelper;
use think\admin\service\AdminService; use think\admin\service\AdminService;
use think\exception\HttpResponseException; use think\exception\HttpResponseException;
@ -45,14 +46,16 @@ class Oplog extends Controller
*/ */
public function index() public function index()
{ {
$this->title = '系统日志管理'; $this->_query($this->table)->layTable(function () {
$this->isSupper = AdminService::instance()->isSuper(); $this->title = '系统日志管理';
// 读取数据类型 $this->isSupper = AdminService::instance()->isSuper();
$this->users = $this->app->db->name($this->table)->distinct(true)->column('username'); // 读取数据类型
$this->actions = $this->app->db->name($this->table)->distinct(true)->column('action'); $this->users = $this->app->db->name($this->table)->distinct(true)->column('username');
// 数据列表处理 $this->actions = $this->app->db->name($this->table)->distinct(true)->column('action');
$query = $this->_query($this->table)->dateBetween('create_at'); }, function (QueryHelper $query) {
$query->equal('username,action')->like('content,geoip,node')->layTable(); // 数据列表处理
$query->dateBetween('create_at')->equal('username,action')->like('content,geoip,node');
});
} }
/** /**

View File

@ -19,6 +19,7 @@ namespace app\admin\controller;
use app\admin\model\SystemBase; use app\admin\model\SystemBase;
use app\admin\model\SystemUser; use app\admin\model\SystemUser;
use think\admin\Controller; use think\admin\Controller;
use think\admin\helper\QueryHelper;
use think\admin\service\AdminService; use think\admin\service\AdminService;
/** /**
@ -61,22 +62,29 @@ class User extends Controller
public function index() public function index()
{ {
$this->type = input('type', 'index'); $this->type = input('type', 'index');
if ($this->request->isGet() && input('get.output') !== 'layui.table') { $this->_query(SystemUser::class)->layTable(function () {
$this->bases = (new SystemBase)->items('身份权限');
$this->title = '系统用户管理'; $this->title = '系统用户管理';
$this->fetch(); $this->bases = (new SystemBase)->items('身份权限');
} else { }, function (QueryHelper $query) {
$query = $this->_query(SystemUser::class);
// 加载对应数据列表 // 加载对应数据列表
if ($this->type === 'index') { if ($this->type === 'index') {
$query->where(['is_deleted' => 0, 'status' => 1]); $query->where(['is_deleted' => 0, 'status' => 1]);
} elseif ($this->type = 'recycle') { } elseif ($this->type = 'recycle') {
$query->where(['is_deleted' => 0, 'status' => 0]); $query->where(['is_deleted' => 0, 'status' => 0]);
} }
// 列表排序并显示 // 数据列表搜索过滤
$query->equal('status,usertype')->dateBetween('login_at,create_at'); $query->equal('status,usertype')->dateBetween('login_at,create_at');
$query->like('username,nickname,contact_phone#phone,contact_mail#mail')->layTable(); $query->like('username,nickname,contact_phone#phone,contact_mail#mail');
} });
}
/**
* 数据列表处理
* @param array $data
*/
protected function _page_filter(array &$data)
{
(new SystemBase)->items('身份权限', $data, 'usertype', 'userinfo');
} }
/** /**

View File

@ -43,10 +43,15 @@
{field: 'sort', title: '排序权重', width: 100, align: 'center', sort: true, templet: '#SortInputTpl'}, {field: 'sort', title: '排序权重', width: 100, align: 'center', sort: true, templet: '#SortInputTpl'},
{field: 'nickname', title: '用户名称', minWidth: 100, align: 'center', sort: false, templet: '<div>{{d.nickname||"-"}}</div>'}, {field: 'nickname', title: '用户名称', minWidth: 100, align: 'center', sort: false, templet: '<div>{{d.nickname||"-"}}</div>'},
{field: 'username', title: '登录账号', minWidth: 100, align: 'center', sort: true, templet: '<div>{{d.username||"-"}}</div>'}, {field: 'username', title: '登录账号', minWidth: 100, align: 'center', sort: true, templet: '<div>{{d.username||"-"}}</div>'},
{field: 'usertype', title: '角色身份', minWidth: 100, align: 'center', sort: true, templet: '<div>{{d.usertype||"-"}}</div>'}, {
field: 'usertype', title: '角色身份', minWidth: 120, align: 'center', sort: true, templet: function (d) {
d.userinfo = d.userinfo || {};
return d.userinfo.code ? (d.userinfo.name + ' ( ' + d.userinfo.code + ' ) ') : '';
}
},
{field: 'contact_mail', title: '联系邮箱', align: 'center', sort: false, templet: '<div>{{d.contact_mail||"-"}}</div>'}, {field: 'contact_mail', title: '联系邮箱', align: 'center', sort: false, templet: '<div>{{d.contact_mail||"-"}}</div>'},
{field: 'contact_phone', title: '联系电话', align: 'center', sort: false, templet: '<div>{{d.contact_phone||"-"}}</div>'}, {field: 'contact_phone', title: '联系电话', align: 'center', sort: false, templet: '<div>{{d.contact_phone||"-"}}</div>'},
{field: 'login_num', title: '登录次数', align: 'center', sort: false}, {field: 'login_num', title: '登录次数', align: 'center', minWidth: 80, sort: false},
{field: 'login_at', title: '最后登录', sort: true, align: 'center', minWidth: 170}, {field: 'login_at', title: '最后登录', sort: true, align: 'center', minWidth: 170},
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true}, {field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
{field: 'status', title: '权限状态', align: 'center', minWidth: 110, fixed: 'right', templet: '#StatusSwitchTpl'}, {field: 'status', title: '权限状态', align: 'center', minWidth: 110, fixed: 'right', templet: '#StatusSwitchTpl'},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long