作者 开飞机的舒克

角色组更新

@@ -71,6 +71,9 @@ class Item extends Backend @@ -71,6 +71,9 @@ class Item extends Backend
71 return $this->view->fetch(); 71 return $this->view->fetch();
72 } 72 }
73 73
  74 + /**
  75 + * 学生信息
  76 + */
74 public function details($ids){ 77 public function details($ids){
75 $row = $this->model->get(['id' => $ids]); 78 $row = $this->model->get(['id' => $ids]);
76 if (!$row) { 79 if (!$row) {
@@ -71,6 +71,9 @@ class Screen extends Backend @@ -71,6 +71,9 @@ class Screen extends Backend
71 return $this->view->fetch(); 71 return $this->view->fetch();
72 } 72 }
73 73
  74 + /**
  75 + * 战队排行
  76 + */
74 public function details($ids) 77 public function details($ids)
75 { 78 {
76 $row = $this->model->get(['id' => $ids]); 79 $row = $this->model->get(['id' => $ids]);
@@ -100,6 +103,9 @@ class Screen extends Backend @@ -100,6 +103,9 @@ class Screen extends Backend
100 return $this->view->fetch(); 103 return $this->view->fetch();
101 } 104 }
102 105
  106 + /**
  107 + * 个人排行
  108 + */
103 public function person($ids) 109 public function person($ids)
104 { 110 {
105 $row = $this->model->get(['id' => $ids]); 111 $row = $this->model->get(['id' => $ids]);
@@ -398,12 +398,6 @@ class Study extends Backend @@ -398,12 +398,6 @@ class Study extends Backend
398 398
399 /** 399 /**
400 * 下载分享码 400 * 下载分享码
401 - *  
402 - * @param null $ids  
403 - * @return void  
404 - * @throws DbException  
405 - * @throws DataNotFoundException  
406 - * @throws ModelNotFoundException  
407 */ 401 */
408 public function multi($ids = null) 402 public function multi($ids = null)
409 { 403 {