实名认证

This commit is contained in:
wyongk
2020-12-12 17:24:17 +08:00
parent 9c816fadb7
commit 40f8ce1192
2 changed files with 104 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace app\api\controller;
use fastphp\base\Controller;
use app\api\model\User;
class Realname
{
public function index()
{
$temp = $_GET;
dump($temp);die;
$user = new User;
$data = [
'Code'=>10000,
'count'=>$count['count'],
'data'=>$list
];
echo json_encode($data);
}
}