wugg 9 달 전
부모
커밋
85624a48ec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/bug/model/WorkAction.php

+ 1 - 1
app/bug/model/WorkAction.php

@@ -44,8 +44,8 @@ class WorkAction extends Base
     	$list = $this->whereIn("id",$idArr)->field("id,action_name,menu_id,belong_action")->select();
     	foreach ($list as &$item){
     		$meun = $this->GetMenuList($item->menu_id,$belong);
-    		$item=array_merge($item->toArray(),$meun);
     		$item->actionInfo = $this->GetActionList($item->belong_action,$belong);
+    		$item=array_merge($item->toArray(),$meun);
     	}
     	return $list;
     }