mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改模板文件
This commit is contained in:
parent
383480b4d6
commit
53cc414e8d
@ -41,12 +41,9 @@ class Menu extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
SystemMenu::mQuery()->layTable(function () {
|
||||
$this->title = '系统菜单管理';
|
||||
}, function (QueryHelper $query) {
|
||||
$query->order('sort desc,id asc');
|
||||
});
|
||||
$this->type = input('get.type', 'index');
|
||||
SystemMenu::mQuery()->layTable();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -45,7 +45,6 @@ class Queue extends Controller
|
||||
SystemQueue::mQuery()->layTable(function () {
|
||||
$this->title = '系统任务管理';
|
||||
$this->iswin = ProcessService::instance()->iswin();
|
||||
// 超级管理面板
|
||||
if ($this->super = AdminService::instance()->isSuper()) {
|
||||
$process = ProcessService::instance();
|
||||
if ($process->iswin() || empty($_SERVER['USER'])) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-card" data-table-id="MenuData" action="{:sysuri()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-card" data-table-id="MenuTable" action="{:sysuri()}" data-auto="true" method="post">
|
||||
|
||||
<div class="layui-card-body">
|
||||
|
||||
|
@ -25,13 +25,13 @@
|
||||
{/if}{/foreach}
|
||||
</ul>
|
||||
<div class="layui-tab-content">
|
||||
<table id="MenuData" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
||||
<table id="MenuTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
$('#MenuData').layTable({
|
||||
$('#MenuTable').layTable({
|
||||
even: true, height: 'full', page: false,
|
||||
sort: {field: 'sort desc,id', type: 'asc'},
|
||||
where: {type: '{$type|default="index"}'},
|
||||
@ -43,7 +43,7 @@
|
||||
},
|
||||
cols: [[
|
||||
{checkbox: true, field: 'sps'},
|
||||
{field: 'sort', title: '排序权重', width: 100, align: 'center', sort: true, templet: '#SortInputTpl'},
|
||||
{field: 'sort', title: '排序权重', width: 100, align: 'center', templet: '#SortInputTpl'},
|
||||
{
|
||||
field: 'icon', title: '图 标', width: 80, align: 'center', templet: function (d) {
|
||||
return layui.laytpl('<i class="{{d.icon}} font-s18"></i>').render(d);
|
||||
@ -67,9 +67,9 @@
|
||||
if (data.status > 0) data.id += obj.elem.dataset.path.replace(/-/g, ',');
|
||||
$.form.load("{:url('state')}", data, 'post', function (ret) {
|
||||
if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
||||
$('#MenuData').trigger('reload');
|
||||
$('#MenuTable').trigger('reload');
|
||||
}); else if (obj.value.split(',').length > 2) {
|
||||
$('#MenuData').trigger('reload');
|
||||
$('#MenuTable').trigger('reload');
|
||||
}
|
||||
return false;
|
||||
}, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user