// +---------------------------------------------------------------------- namespace app\controller\user; /** * @title 用户中心 */ class Index extends Base { /** * @title 用户首页 * @return [type] [description] */ public function index() { return $this->fetch(); } /** * @title 个人资料 * @return [type] [description] */ public function profile() { return $this->fetch(); } /** * @title 重置密码 * @return [type] [description] */ public function repasswd() { return $this->fetch(); } /** * @title 上传头像 * @return [type] [description] */ public function avatar() { return $this->fetch(); } }