mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新菜单排序
This commit is contained in:
parent
c0e453b445
commit
70e0785b21
@ -20,7 +20,7 @@ class Index extends BasicAdmin {
|
|||||||
* @return \think\response\View
|
* @return \think\response\View
|
||||||
*/
|
*/
|
||||||
public function index() {
|
public function index() {
|
||||||
$list = Db::name('SystemMenu')->field('title,id,pid,url,icon')->where('status', '1')->select();
|
$list = Db::name('SystemMenu')->field('title,id,pid,url,icon')->order('sort asc,id asc')->where('status', '1')->select();
|
||||||
$menus = $this->_filter_menu(Tools::arr2tree($list));
|
$menus = $this->_filter_menu(Tools::arr2tree($list));
|
||||||
$this->assign('title', '后台管理');
|
$this->assign('title', '后台管理');
|
||||||
$this->assign('menus', $menus);
|
$this->assign('menus', $menus);
|
||||||
|
@ -28,7 +28,8 @@ class Menu extends BasicAdmin {
|
|||||||
*/
|
*/
|
||||||
public function index() {
|
public function index() {
|
||||||
$this->title = '系统菜单管理';
|
$this->title = '系统菜单管理';
|
||||||
parent::_list($this->table, false);
|
$db = Db::name($this->table)->order('sort asc,id asc');
|
||||||
|
parent::_list($db, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user