|
@@ -134,4 +134,18 @@ class School extends Controller
|
|
|
$this->_form($this->table);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 详情
|
|
|
+ * @auth true
|
|
|
+ */
|
|
|
+ public function school_info()
|
|
|
+ {
|
|
|
+ $id = $this->request->get('id');
|
|
|
+ $name = Db::name($this->table)->where('id',$id)->value('name');
|
|
|
+ $this->title = $name;
|
|
|
+ $this->_form($this->table);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|