新增用户弹窗接口,修改用户注册增加弹窗数据

This commit is contained in:
2023-04-27 17:46:52 +08:00
parent 60c257574d
commit de4c302ad2
7 changed files with 131 additions and 4 deletions
+10
View File
@@ -153,6 +153,16 @@ class UserController extends AbstractController
return $this->response->json($data);
}
/**
* 获取弹窗数据
* @return ResponseInterface
*/
public function getUserPopup(): ResponseInterface
{
$UserService = new UserService();
$data = $UserService->getUserPopup();
return $this->response->json($data);
}
// 支付测试
public function testpay(){