12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_six,
- "title" => "其它费用",
- "sort" => -6,
- "func" => "special_purchase_other_fee",
- "menu_id" => 45,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_seven,
- "title" => "优惠金额",
- "sort" => -7,
- "func" => "special_purchase_discount_fee",
- "menu_id" => 45,
- ],
- ];
|