Files
swiftadmin/plugin/easyflow/data/menu.php

47 lines
992 B
PHP
Raw Normal View History

2024-07-13 12:53:20 +08:00
<?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,
],
],
],
];