menus.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * 后台菜单配置
  4. * 'home' => [
  5. * 'name' => '首页', // 菜单名称
  6. * 'icon' => 'icon-home', // 图标 (class)
  7. * 'index' => 'index/index', // 链接
  8. * ],
  9. */
  10. return [
  11. 'store' => [
  12. 'name' => '小程序商城',
  13. 'icon' => 'icon-shangcheng',
  14. 'submenu' => [
  15. [
  16. 'name' => '商城列表',
  17. 'index' => 'store/index',
  18. 'uris' => [
  19. 'store/index',
  20. 'store/add',
  21. ]
  22. ],
  23. [
  24. 'name' => '回收站',
  25. 'index' => 'store/recycle'
  26. ],
  27. [
  28. 'name' => '权限管理',
  29. 'index' => 'store.access/index'
  30. ]
  31. ],
  32. ],
  33. 'setting' => [
  34. 'name' => '系统设置',
  35. 'icon' => 'icon-shezhi',
  36. 'submenu' => [
  37. [
  38. 'name' => '清理缓存',
  39. 'index' => 'setting.cache/clear'
  40. ],
  41. [
  42. 'name' => '环境检测',
  43. 'index' => 'setting.science/index'
  44. ],
  45. ],
  46. ],
  47. ];