| // | Copyright (c) 2017, http://www.xdeepu.cn. All Rights Reserved. | // +-----------------------------------------------------------------------------------+ namespace app\mobile\controller; use app\common\model\MemberList as MemberListModel; /** * fdsaf */ class Tools extends _Init { public function index() { $this->list = MemberListModel::where('')->select(); return $this->fetch(''); } public function add() { if (IS_POST) { # code... } else { $this->showfoot = '1'; $this->list = MemberListModel::where('')->select(); return $this->fetch(''); } } public function info() { return $this->fetch(''); } }