百度小程序
parent
2cc2fd563b
commit
52cfe3b2d0
|
|
@ -47,7 +47,7 @@ class Answer extends Common
|
|||
$this->IsLogin();
|
||||
|
||||
// 参数
|
||||
$params = input();
|
||||
$params = $this->data_request;
|
||||
$params['user'] = $this->user;
|
||||
|
||||
// 分页
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class User extends Common
|
|||
}
|
||||
|
||||
// 调用服务层
|
||||
return UserService::AppReg(input('post.'));
|
||||
return UserService::AppReg($this->data_post);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -73,7 +73,7 @@ class User extends Common
|
|||
}
|
||||
|
||||
// 调用服务层
|
||||
return UserService::AppUserBindVerifySend(input('post.'));
|
||||
return UserService::AppUserBindVerifySend($this->data_post);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class UserGoodsFavor extends Common
|
|||
public function Index()
|
||||
{
|
||||
// 参数
|
||||
$params = input();
|
||||
$params = $this->data_request;
|
||||
$params['user'] = $this->user;
|
||||
|
||||
// 分页
|
||||
|
|
|
|||
Loading…
Reference in New Issue