|
@@ -262,7 +262,10 @@ class Work extends Base{
|
|
|
$id=$this->request->post('id/d');
|
|
|
$info = WorkAction::where(['id'=>$id])->findOrEmpty();
|
|
|
if($info->isEmpty()) error('未找到数据');
|
|
|
- return success('获取成功',$info);
|
|
|
+ $meun = $info->GetMenuList($info->menu_id,$info->belong);
|
|
|
+ $info->belong_action_info = $info->GetActionList($info->belong_action,$info->belong);
|
|
|
+ $info->belong_process_info = $info->GetProcessList($info->belong_process,$info->belong);
|
|
|
+ return success('获取成功',array_merge($info->toArray(),$meun));
|
|
|
}
|
|
|
public function WorkActionList(){
|
|
|
$param=$this->request->param(['menu_id'=>'','belong'=>0,'action_name'=>'',"page"=>1,"size"=>15],'post','trim');
|