specialButton.php 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. return [
  3. [
  4. "id" => \App\Model\RoleMenuButton::special_one,
  5. "title" => "分社价格",
  6. "sort" => -1,
  7. "func" => "special_show_branch_price",
  8. "menu_id" => 17,
  9. ],
  10. [
  11. "id" => \App\Model\RoleMenuButton::special_two,
  12. "title" => "成本",
  13. "sort" => -2,
  14. "func" => "special_show_cost",
  15. "menu_id" => 17,
  16. ],
  17. [
  18. "id" => \App\Model\RoleMenuButton::special_three,
  19. "title" => "分配/调配",
  20. "sort" => -3,
  21. "func" => "special_allocation",
  22. "menu_id" => 34,
  23. "is_button" => 1,
  24. ],
  25. [
  26. "id" => \App\Model\RoleMenuButton::special_four,
  27. "title" => "完结",
  28. "sort" => -4,
  29. "func" => "special_finish_construction",
  30. "menu_id" => 34,
  31. ],
  32. [
  33. "id" => \App\Model\RoleMenuButton::special_five,
  34. "title" => "待确认",
  35. "sort" => -5,
  36. "func" => "special_sure_construction",
  37. "menu_id" => 34,
  38. ],
  39. ];