display(); } public function home(){ $this->display(); } //用户登录 public function do_login() { $account = I("Account"); $password = I("Password"); //var_dump($password); $verify = new \Think\Verify(); if (!$verify->check(I("VerifyCode"))) { $this->ajaxReturn(array("ErrorCode" => -97, "ResultMsg" => "验证码错误")); } $userApi = new MemberApi(); $user_id = $userApi->login($account, $password,1);//调用登录 $res_code = 0; $res_msg = "登录成功"; if ($user_id < 0) { switch ($user_id) { case -1000 : $res_code = self::USER_NOT_EXIST; $res_msg = "用户不存在"; break; case -10021 : $res_code = self::USER_PWD_ERROR; $res_msg = "登录密码错误"; break; default : $res_code = self::UNKNOWN_ERROR; $res_msg = "未知错误"; } } $this->ajaxReturn(array("ErrorCode"=>$res_code,"ResultMsg"=>$res_msg),'JSON'); } //验证码 public function verify($vid = '') { $config = array( 'seKey' => 'ThinkPHP.CN', //验证码加密密钥 'fontSize' => 16, // 验证码字体大小(px) 'imageH' => 42, // 验证码图片高度 'imageW' => 107, // 验证码图片宽度 'length' => 4, // 验证码位数 'fontttf' => '4.ttf', // 验证码字体,不设置随机获取 'useCurve' => false, ); ob_clean(); $verify = new \Think\Verify($config); $verify->codeSet = '0123456789'; $verify->entry($vid); } //首页 public function index(){ $map['user_id']= 24; $map['sdk_version'] = 2; $game_list = M("user_play","tab_")->where($map)->select(); $this->assign("data_list",$game_list); $this->display(); } public function order(){ $order_list = M("game_supersign","tab_")->where('user_id=24')->order("id")->select(); $this->assign("data_list",$order_list); $this->display(); } //流程 public function process(){ $this->display(); } //教程 public function tutorial(){ $this->display(); } //帮助 public function help(){ $this->display(); } //规则 public function rule(){ $this->display(); } }