diff --git a/app/admin/controller/Menu.php b/app/admin/controller/Menu.php index 06c801c77..5bb0083e1 100644 --- a/app/admin/controller/Menu.php +++ b/app/admin/controller/Menu.php @@ -42,7 +42,7 @@ class Menu extends Controller { $this->title = '系统菜单管理'; $this->type = input('get.type', 'index'); - SystemMenu::mQuery()->order('sort desc,id asc')->page(false, true); + SystemMenu::mQuery()->order('sort desc,id asc')->layTable();//->page(false, true); } /** @@ -131,7 +131,6 @@ class Menu extends Controller */ public function state() { - $this->_applyFormToken(); SystemMenu::mSave($this->_vali([ 'status.in:0,1' => '状态值范围异常!', 'status.require' => '状态值不能为空!', @@ -144,7 +143,6 @@ class Menu extends Controller */ public function remove() { - $this->_applyFormToken(); SystemMenu::mDelete(); } } diff --git a/app/admin/view/menu/index.html b/app/admin/view/menu/index.html index 6bb65e5cd..04965df38 100644 --- a/app/admin/view/menu/index.html +++ b/app/admin/view/menu/index.html @@ -2,7 +2,7 @@ {block name="button"} - + @@ -25,78 +25,102 @@ {/if}{/foreach}
- {empty name='list'} -
没有记录哦
- {else} - - - - - - - - - - - - - {foreach $list as $key=>$vo} - - - - - - - - - - {/foreach} - -
- - - -
- - - - {$vo.spl|raw}{$vo.title}{$vo.url}{eq name='vo.status' value='0'}已禁用{else}已激活{/eq} - - {if isset($type) and $type eq 'index'} - - {if auth("add")} - - 添 加 - - 添 加 - - {/if} - - - 编 辑 - - - - 禁 用 - - - {else} - - - 激 活 - - - - 删 除 - - - - 删 除 - - - {/if} -
- {/empty} +
-{/block} + + + + + + + + + + + +{/block} \ No newline at end of file diff --git a/app/admin/view/user/index.html b/app/admin/view/user/index.html index 9afca1bf9..9ca500757 100644 --- a/app/admin/view/user/index.html +++ b/app/admin/view/user/index.html @@ -41,6 +41,12 @@ cols: [[ {checkbox: true, fixed: true}, {field: 'sort', title: '排序权重', width: 100, align: 'center', sort: true, templet: '#SortInputTpl'}, + { + field: 'headimg', title: '头像', width: 60, align: 'center', templet: function (d) { + if (!d.headimg) return ''; + return layui.laytpl('
').render(d); + } + }, {field: 'username', title: '登录账号', minWidth: 110, templet: '
{{d.username||"-"}}
'}, {field: 'nickname', title: '用户名称', minWidth: 110, templet: '
{{d.nickname||"-"}}
'}, /* {notempty name='bases'} */ @@ -65,7 +71,7 @@ layui.form.on('switch(StatusSwitch)', function (obj) { $.form.load("{:url('state')}", {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0}, 'post', function (ret) { if (ret.code < 1) $.msg.error(ret.info, 3, function () { - $('#UserData').trigger('reload'); // 操作异常时重载数据 + $('#UserData').trigger('reload'); }); return false; }, false); diff --git a/app/admin/view/user/index_search.html b/app/admin/view/user/index_search.html index ec6506f6c..52240a610 100644 --- a/app/admin/view/user/index_search.html +++ b/app/admin/view/user/index_search.html @@ -3,16 +3,16 @@