1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- return [
- [
- "id" => \App\Model\RoleMenuButton::special_one,
- "title" => "分社价格",
- "sort" => -1,
- "func" => "special_show_branch_price",
- "menu_id" => 17,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_two,
- "title" => "成本",
- "sort" => -2,
- "func" => "special_show_cost",
- "menu_id" => 17,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_three,
- "title" => "分配/调配",
- "sort" => -3,
- "func" => "special_allocation",
- "menu_id" => 34,
- "is_button" => 1,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_four,
- "title" => "完结",
- "sort" => -4,
- "func" => "special_finish_construction",
- "menu_id" => 34,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_five,
- "title" => "待确认",
- "sort" => -5,
- "func" => "special_sure_construction",
- "menu_id" => 34,
- ],
- ];
|