作者 郭文星

31231

... ... @@ -231,7 +231,6 @@ class Car extends Base
$phone = $this->request->param("phone");
$is_adult = $this->request->param("is_adult");
$user_id = $this->auth->id;
print_r($user_id);return;
if(!$user_id){
$this->error("添加失败,token失效。".$this->auth->id);
}
... ... @@ -251,6 +250,9 @@ class Car extends Base
*/
public function updatepassenger()
{
$user_id = $this->auth->id;
print_r($user_id);return;
$name = $this->request->param("name");
$IDcard = $this->request->param("IDcard");
$phone = $this->request->param("phone");
... ...