zxhxx 3 년 전
부모
커밋
540efc8fa8
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      application/admin/library/traits/Backend.php

+ 6 - 0
application/admin/library/traits/Backend.php

@@ -479,4 +479,10 @@ trait Backend
 
         $this->success();
     }
+    public function info($id)
+    {
+        $row = $this->model->get($id);
+        $this->assign('info',$row);
+        return $this->view->fetch();
+    }
 }