更新插件的前台默认的显示页面,控制器的 bool变量名称更新后可以正常显示。

This commit is contained in:
panx
2024-08-17 22:22:12 +08:00
parent c26870b8c5
commit f2b899bd0b
29 changed files with 699 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
<li class="layui-nav-item">
<a class="#" lay-href="/index/partmanage/index">物料管理插件</a>
</li>

View File

@@ -0,0 +1,47 @@
<?php
return [
0 => [
'title' => '部件管理',
'router' => '/partmanage/Index',
'icon' => 'fa-home',
'auth' => 1,
'type' => 0,
'children' => [
0 => [
'title' => '查看',
'router' => '/partmanage/Index/index',
'icon' => NULL,
'auth' => 1,
'type' => 1,
],
1 => [
'title' => '添加',
'router' => '/partmanage/Index/add',
'icon' => NULL,
'auth' => 1,
'type' => 1,
],
2 => [
'title' => '编辑',
'router' => '/partmanage/Index/edit',
'icon' => NULL,
'auth' => 1,
'type' => 1,
],
3 => [
'title' => '删除',
'router' => '/partmanage/Index/del',
'icon' => NULL,
'auth' => 1,
'type' => 1,
],
4 => [
'title' => '状态',
'router' => '/partmanage/Index/status',
'icon' => NULL,
'auth' => 1,
'type' => 1,
],
],
],
];