mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改系统菜单选择排序
This commit is contained in:
parent
ce578f6bda
commit
3b91c084d9
@ -83,7 +83,7 @@ class Menu extends BasicAdmin
|
||||
{
|
||||
if ($this->request->isGet()) {
|
||||
// 上级菜单处理
|
||||
$_menus = Db::name($this->table)->where(['status' => '1'])->order('sort desc,id desc')->select();
|
||||
$_menus = Db::name($this->table)->where(['status' => '1'])->order('sort asc,id asc')->select();
|
||||
$_menus[] = ['title' => '顶级菜单', 'id' => '0', 'pid' => '-1'];
|
||||
$menus = ToolsService::arr2table($_menus);
|
||||
foreach ($menus as $key => &$menu) {
|
||||
|
@ -118,7 +118,7 @@ class ToolsService
|
||||
* @param string $ppath
|
||||
* @return array
|
||||
*/
|
||||
public static function arr2table($list, $id = 'id', $pid = 'pid', $path = 'path', $ppath = '')
|
||||
public static function arr2table(array $list, $id = 'id', $pid = 'pid', $path = 'path', $ppath = '')
|
||||
{
|
||||
$tree = [];
|
||||
foreach (self::arr2tree($list, $id, $pid) as $attr) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user