安装插件后的基础文件

This commit is contained in:
panx
2024-07-13 12:53:20 +08:00
parent db41c93a84
commit 7f33ce4bf6
318 changed files with 31711 additions and 0 deletions

View File

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