1
0
Fork 0
develop
panliang 2023-04-25 11:40:40 +08:00
commit 15ed5a1a77
2 changed files with 23 additions and 20 deletions

View File

@ -21,25 +21,28 @@ class IndexController extends BaseController
'login_captcha' => config('admin.auth.login_captcha'), 'login_captcha' => config('admin.auth.login_captcha'),
'show_development_tools' => config('admin.show_development_tools'), 'show_development_tools' => config('admin.show_development_tools'),
'system_theme_setting' => Admin::setting()->get('system_theme_setting', [ 'system_theme_setting' => array_merge(
"animateInDuration" => 550, Admin::setting()->get('system_theme_setting', []),
"animateInType" => "alpha", [
"animateOutDuration" => 450, "animateInDuration"=> 550,
"animateOutType" => "alpha", "animateInType"=> "alpha",
"breadcrumb" => true, "animateOutDuration" => 450,
"breadcrumbIcon" => false, "animateOutType"=> "alpha",
"enableTab" => false, "breadcrumb"=> true,
"footer" => false, "breadcrumbIcon" => false,
"keepAlive" => false, "footer"=> false,
"layoutMode" => "default", "keepAlive"=> false,
"loginTemplate" => "default", "layoutMode"=> "default",
"menuWidth" => 220, "loginTemplate"=> "default",
"siderTheme" => "light", "menuWidth"=> 220,
"tabIcon" => true, "siderTheme"=>"light",
"theme" => "light", "theme"=>"light",
"themeColor" => "#4080FF", "themeColor"=>"#4080FF",
"topTheme" => "light", "topTheme"=> "light",
]), 'enableTab' => config('admin.layout.tab_enable'),
'tabIcon' => config('admin.layout.tab_icon'),
]
),
'enabled_extensions' => Extension::query()->where('is_enabled', 1)->pluck('name')?->toArray(), 'enabled_extensions' => Extension::query()->where('is_enabled', 1)->pluck('name')?->toArray(),
]); ]);
} }

View File

@ -38,7 +38,7 @@ class AdminMenuSeeder extends Seeder
], ],
['title' => '育秧中心', 'icon' => 'icon-park:lotus', 'url' => '', 'order'=>4, ['title' => '育秧中心', 'icon' => 'icon-park:lotus', 'url' => '', 'order'=>4,
'children' => [ 'children' => [
['title' => '大棚控制', 'icon' => 'icon-park:link-one', 'url' => 'https://www.baidu.com', 'url_type'=>2, 'order'=>1], // ['title' => '大棚控制', 'icon' => 'icon-park:link-one', 'url' => 'https://www.baidu.com', 'url_type'=>2, 'order'=>1],
['title' => '育秧列表', 'icon' => 'icon-park:more-app', 'url' => '/custom-region/yuyang', 'order'=>2], ['title' => '育秧列表', 'icon' => 'icon-park:more-app', 'url' => '/custom-region/yuyang', 'order'=>2],
] ]
], ],