You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
517 B
24 lines
517 B
3 months ago
|
<?php
|
||
|
|
||
|
namespace app\home\controller;
|
||
|
|
||
|
use app\home\service\UserVerifyService;
|
||
|
|
||
|
class UserVerify extends HomeBaseController
|
||
|
{
|
||
|
|
||
|
// 新增实名认证
|
||
|
public function add()
|
||
|
{
|
||
|
$returnData = (new UserVerifyService())->add($this->request->post(),$this->request->userId);
|
||
|
return json($returnData);
|
||
|
}
|
||
|
|
||
|
|
||
|
// 实名认证详细信息
|
||
|
public function detail()
|
||
|
{
|
||
|
$returnData = (new UserVerifyService())->detail($this->request->userId);
|
||
|
return json($returnData);
|
||
|
}
|
||
|
}
|