menu_shop.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 平台端菜单设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. [
  7. 'name' => 'SYSTEM_FORM',
  8. 'title' => '系统表单',
  9. 'url' => 'form://shop/form/lists',
  10. 'parent' => 'PROMOTION_TOOL',
  11. 'is_show' => 1,
  12. 'is_control' => 1,
  13. 'is_icon' => 0,
  14. 'picture' => '',
  15. 'picture_select' => '',
  16. 'sort' => 1,
  17. 'child_list' => [
  18. [
  19. 'name' => 'FORM_ADD',
  20. 'title' => '添加表单',
  21. 'url' => 'form://shop/form/addform',
  22. 'is_show' => 0,
  23. 'is_control' => 1,
  24. 'is_icon' => 0,
  25. 'picture' => '',
  26. 'picture_selected' => '',
  27. ],
  28. [
  29. 'name' => 'FORM_EDIT',
  30. 'title' => '编辑表单',
  31. 'url' => 'form://shop/form/editform',
  32. 'is_show' => 0,
  33. 'is_control' => 1,
  34. 'is_icon' => 0,
  35. 'picture' => '',
  36. 'picture_selected' => '',
  37. ],
  38. [
  39. 'name' => 'FORM_DELETE',
  40. 'title' => '删除表单',
  41. 'url' => 'form://shop/form/deleteform',
  42. 'is_show' => 0,
  43. 'is_control' => 1,
  44. 'is_icon' => 0,
  45. 'picture' => '',
  46. 'picture_selected' => '',
  47. ],
  48. [
  49. 'name' => 'FORM_IS_USE',
  50. 'title' => '表单是否启用',
  51. 'url' => 'form://shop/form/editisuse',
  52. 'is_show' => 0,
  53. 'is_control' => 1,
  54. 'is_icon' => 0,
  55. 'picture' => '',
  56. 'picture_selected' => '',
  57. ],
  58. [
  59. 'name' => 'FORM_DATA',
  60. 'title' => '表单数据',
  61. 'url' => 'form://shop/form/formdata',
  62. 'is_show' => 0,
  63. 'is_control' => 1,
  64. 'is_icon' => 0,
  65. 'picture' => '',
  66. 'picture_selected' => '',
  67. ],
  68. [
  69. 'name' => 'FORM_DATA_EXPORT',
  70. 'title' => '表单数据详情',
  71. 'url' => 'form://shop/form/exportform',
  72. 'is_show' => 0,
  73. 'is_control' => 1,
  74. 'is_icon' => 0,
  75. 'picture' => '',
  76. 'picture_selected' => '',
  77. ],
  78. ]
  79. ],
  80. ];