User.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\User as ModelUser;
  4. use app\admin\model\UserAddress;
  5. use app\admin\model\UserSubscribeMessage;
  6. use app\common\controller\Api;
  7. use app\common\library\Ems;
  8. use app\common\library\Sms;
  9. use fast\Http;
  10. use fast\Random;
  11. use think\Config;
  12. use think\Db;
  13. use think\exception\ErrorException;
  14. use think\Validate;
  15. use function fast\e;
  16. /**
  17. * 会员接口and收货地址
  18. * @ApiWeigh (7)
  19. */
  20. class User extends Api
  21. {
  22. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','tees'];
  23. protected $noNeedRight = '*';
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. if (!Config::get('fastadmin.usercenter')) {
  28. $this->error(__('User center already closed'));
  29. }
  30. }
  31. /**
  32. * 会员中心
  33. */
  34. public function index()
  35. {
  36. $this->success('', ['welcome' => $this->auth->nickname]);
  37. }
  38. /**
  39. * 会员登录
  40. *
  41. * @ApiMethod (POST)
  42. * @param string $account 账号
  43. * @param string $password 密码
  44. */
  45. public function login()
  46. {
  47. $account = $this->request->post('account');
  48. $password = $this->request->post('password');
  49. if (!$account || !$password) {
  50. $this->error(__('Invalid parameters'));
  51. }
  52. $ret = $this->auth->login($account, $password);
  53. if ($ret) {
  54. $data = ['userinfo' => $this->auth->getUserinfo()];
  55. $this->success(__('Logged in successful'), $data);
  56. } else {
  57. $this->error($this->auth->getError());
  58. }
  59. }
  60. /**
  61. * 手机验证码登录
  62. *
  63. * @ApiMethod (POST)
  64. * @param string $mobile 手机号
  65. * @param string $captcha 验证码
  66. */
  67. public function mobilelogin()
  68. {
  69. $mobile = $this->request->post('mobile');
  70. $captcha = $this->request->post('captcha');
  71. if (!$mobile || !$captcha) {
  72. $this->error(__('Invalid parameters'));
  73. }
  74. if (!Validate::regex($mobile, "^1\d{10}$")) {
  75. $this->error(__('Mobile is incorrect'));
  76. }
  77. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  78. $this->error(__('Captcha is incorrect'));
  79. }
  80. $user = \app\common\model\User::getByMobile($mobile);
  81. if ($user) {
  82. if ($user->status != 'normal') {
  83. $this->error(__('Account is locked'));
  84. }
  85. //如果已经有账号则直接登录
  86. $ret = $this->auth->direct($user->id);
  87. } else {
  88. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  89. }
  90. if ($ret) {
  91. Sms::flush($mobile, 'mobilelogin');
  92. $data = ['userinfo' => $this->auth->getUserinfo()];
  93. $this->success(__('Logged in successful'), $data);
  94. } else {
  95. $this->error($this->auth->getError());
  96. }
  97. }
  98. /**
  99. * 注册会员
  100. *
  101. * @ApiMethod (POST)
  102. * @param string $username 用户名
  103. * @param string $password 密码
  104. * @param string $email 邮箱
  105. * @param string $mobile 手机号
  106. * @param string $code 验证码
  107. */
  108. public function register()
  109. {
  110. $username = $this->request->post('mobile');
  111. $password = $this->request->post('password');
  112. $email ='yubobao@qq.com';
  113. $mobile = $this->request->post('mobile');
  114. $code = $this->request->post('code');
  115. if (!$username || !$password) {
  116. $this->error(__('Invalid parameters'));
  117. }
  118. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  119. $this->error(__('Mobile is incorrect'));
  120. }
  121. $ret = Sms::check($mobile, $code, 'register');
  122. if (!$ret) {
  123. $this->error(__('Captcha is incorrect'));
  124. }
  125. $ret = $this->auth->register($username, $password, $email, $mobile, []);
  126. if ($ret) {
  127. $data = ['userinfo' => $this->auth->getUserinfo()];
  128. $this->success(__('Sign up successful'), $data);
  129. } else {
  130. $this->error($this->auth->getError());
  131. }
  132. }
  133. public function tees(){
  134. $mobile = $this->request->post('mobile');
  135. $code = $this->request->post('code');
  136. $ret = Sms::check($mobile, $code, 'register');
  137. if (!$ret) {
  138. $this->error(__('Captcha is incorrect'));
  139. }
  140. }
  141. /**
  142. * 退出登录
  143. * @ApiMethod (POST)
  144. */
  145. public function logout()
  146. {
  147. if (!$this->request->isPost()) {
  148. $this->error(__('Invalid parameters'));
  149. }
  150. $this->auth->logout();
  151. $this->success(__('Logout successful'));
  152. }
  153. /**
  154. * 修改会员个人信息
  155. *
  156. * @ApiMethod (POST)
  157. * @param string $avatar 头像地址
  158. * @param string $username 用户名
  159. * @param string $nickname 昵称
  160. * @param string $bio 个人简介
  161. */
  162. public function profile()
  163. {
  164. $user = $this->auth->getUser();
  165. $username = $this->request->post('username');
  166. $nickname = $this->request->post('nickname');
  167. $bio = $this->request->post('bio');
  168. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  169. if ($username) {
  170. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  171. if ($exists) {
  172. $this->error(__('Username already exists'));
  173. }
  174. $user->username = $username;
  175. }
  176. if ($nickname) {
  177. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  178. if ($exists) {
  179. $this->error(__('Nickname already exists'));
  180. }
  181. $user->nickname = $nickname;
  182. }
  183. $user->bio = $bio;
  184. $user->avatar = $avatar;
  185. $user->save();
  186. $this->success();
  187. }
  188. /**
  189. * 修改邮箱
  190. *
  191. * @ApiMethod (POST)
  192. * @param string $email 邮箱
  193. * @param string $captcha 验证码
  194. */
  195. public function changeemail()
  196. {
  197. $user = $this->auth->getUser();
  198. $email = $this->request->post('email');
  199. $captcha = $this->request->post('captcha');
  200. if (!$email || !$captcha) {
  201. $this->error(__('Invalid parameters'));
  202. }
  203. if (!Validate::is($email, "email")) {
  204. $this->error(__('Email is incorrect'));
  205. }
  206. if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
  207. $this->error(__('Email already exists'));
  208. }
  209. $result = Ems::check($email, $captcha, 'changeemail');
  210. if (!$result) {
  211. $this->error(__('Captcha is incorrect'));
  212. }
  213. $verification = $user->verification;
  214. $verification->email = 1;
  215. $user->verification = $verification;
  216. $user->email = $email;
  217. $user->save();
  218. Ems::flush($email, 'changeemail');
  219. $this->success();
  220. }
  221. /**
  222. * 修改手机号
  223. *
  224. * @ApiMethod (POST)
  225. * @param string $mobile 手机号
  226. * @param string $captcha 验证码
  227. */
  228. public function changemobile()
  229. {
  230. $user = $this->auth->getUser();
  231. $mobile = $this->request->post('mobile');
  232. $captcha = $this->request->post('captcha');
  233. if (!$mobile || !$captcha) {
  234. $this->error(__('Invalid parameters'));
  235. }
  236. if (!Validate::regex($mobile, "^1\d{10}$")) {
  237. $this->error(__('Mobile is incorrect'));
  238. }
  239. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  240. $this->error(__('Mobile already exists'));
  241. }
  242. $result = Sms::check($mobile, $captcha, 'changemobile');
  243. if (!$result) {
  244. $this->error(__('Captcha is incorrect'));
  245. }
  246. $verification = $user->verification;
  247. $verification->mobile = 1;
  248. $user->verification = $verification;
  249. $user->mobile = $mobile;
  250. $user->save();
  251. Sms::flush($mobile, 'changemobile');
  252. $this->success();
  253. }
  254. /**
  255. * 第三方登录
  256. *
  257. * @ApiMethod (POST)
  258. * @param string $platform 平台名称
  259. * @param string $code Code码
  260. */
  261. public function third()
  262. {
  263. $url = url('user/index');
  264. $platform = $this->request->post("platform");
  265. $code = $this->request->post("code");
  266. //通过code换access_token和绑定会员
  267. // $result = $this->getWechatInfoByAPP($platform,$code);
  268. $params =[
  269. 'nickname'=>'用户名',
  270. 'avatar' =>'',
  271. 'unionid'=>'o59Zi4_X2AaTNTR7DIcbvGh_46Kg',
  272. 'openid'=>'orIcq60YtpA9ZawW4Y9Cy-9yGCsM',
  273. 'access_token'=>'',
  274. 'refresh_token'=>'',
  275. 'expires_in'=>'7200'
  276. ] ;
  277. if (1) {
  278. $loginret = \addons\third\library\Service::connect($platform, $params);
  279. if ($loginret) {
  280. $data = [
  281. 'userinfo' => $this->auth->getUserinfo(),
  282. ];
  283. $this->success(__('Logged in successful'), $data);
  284. }
  285. }
  286. $this->error(__('Operation failed'), $url);
  287. }
  288. public function getWechatInfoByAPP($platform,$code)
  289. {
  290. if($platform=='app') {
  291. $app_id = 'wx7165322b4ece8fae'; // 开放平台APP的id
  292. $app_secret = '30d611c8287260d8ef0e5bb0440d9d9e'; // 开放平台APP的secret
  293. $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid={$app_id}&secret={$app_secret}&code={$code}&grant_type=authorization_code";
  294. }
  295. else{
  296. $app_id = 'wx20bb65dcc885b693'; // 开放平台APP的id
  297. $app_secret = 'aa24c8058672b7e7f90e14bfdc27eff1'; // 开放平台APP的secret
  298. $url="https://api.weixin.qq.com/sns/jscode2session?appid=$app_id&secret=$app_secret&js_code=$code&grant_type=authorization_code";
  299. }
  300. $params = [
  301. 'appid' => $app_id,
  302. 'secret' => $app_secret,
  303. 'js_code' => $code,
  304. 'grant_type' => 'authorization_code'
  305. ];
  306. $data = Http::sendRequest($url, $params, 'GET');
  307. Array('ret' => 1, 'msg' => '{"session_key":"4bMZyDrmSYo6gxB4NV3ASw==","openid":"o59Zi4_X2AaTNTR7DIcbvGh_46Kg","unionid":"orIcq60YtpA9ZawW4Y9Cy-9yGCsM"}');
  308. $data = json_decode($data['msg'],true);
  309. if (isset($data['errcode']) && $data['errcode']) {
  310. $this->error('code错误'.$data['errmsg']);
  311. }
  312. return $data;
  313. }
  314. /**
  315. * 重置密码
  316. *
  317. * @ApiMethod (POST)
  318. * @param string $mobile 手机号
  319. * @param string $newpassword 新密码
  320. * @param string $captcha 验证码
  321. */
  322. public function resetpwd()
  323. {
  324. $type = $this->request->post("type");
  325. $mobile = $this->request->post("mobile");
  326. $email = $this->request->post("email");
  327. $newpassword = $this->request->post("newpassword");
  328. $captcha = $this->request->post("captcha");
  329. if (!$newpassword || !$captcha) {
  330. $this->error(__('Invalid parameters'));
  331. }
  332. //验证Token
  333. if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  334. $this->error(__('Password must be 6 to 30 characters'));
  335. }
  336. if ($type == 'mobile') {
  337. if (!Validate::regex($mobile, "^1\d{10}$")) {
  338. $this->error(__('Mobile is incorrect'));
  339. }
  340. $user = \app\common\model\User::getByMobile($mobile);
  341. if (!$user) {
  342. $this->error(__('User not found'));
  343. }
  344. $ret = Sms::check($mobile, $captcha, 'resetpwd');
  345. if (!$ret) {
  346. $this->error(__('Captcha is incorrect'));
  347. }
  348. Sms::flush($mobile, 'resetpwd');
  349. } else {
  350. if (!Validate::is($email, "email")) {
  351. $this->error(__('Email is incorrect'));
  352. }
  353. $user = \app\common\model\User::getByEmail($email);
  354. if (!$user) {
  355. $this->error(__('User not found'));
  356. }
  357. $ret = Ems::check($email, $captcha, 'resetpwd');
  358. if (!$ret) {
  359. $this->error(__('Captcha is incorrect'));
  360. }
  361. Ems::flush($email, 'resetpwd');
  362. }
  363. //模拟一次登录
  364. $this->auth->direct($user->id);
  365. $ret = $this->auth->changepwd($newpassword, '', true);
  366. if ($ret) {
  367. $this->success(__('Reset password successful'));
  368. } else {
  369. $this->error($this->auth->getError());
  370. }
  371. }
  372. /**
  373. * 添加地址信息
  374. * @ApiMethod (POST)
  375. * @ApiParams (name=name,description="姓名")
  376. * @ApiParams (name=phone,description="手机号")
  377. * @ApiParams (name=province_id,type="int", required=true,description="省")
  378. * @ApiParams (name=city_id,type="int", required=true,description="市")
  379. * @ApiParams (name=area_id,type="int", required=true,description="区")
  380. * @ApiParams (name=address,description="详细地址")
  381. * @ApiParams (name=default,type="int", required=true,description="是否默认:1=默认")
  382. */
  383. public function add_address()
  384. {
  385. $user_address_model = new UserAddress();
  386. $user_id = $this->auth->id;
  387. $input = input();
  388. if (empty($input['province_id']) || empty($input['city_id']) || empty('area_id')) {
  389. $this->error('请选择省市区');
  390. }
  391. if (empty($input['address']) || empty($input['name']) || empty($input['phone'])) {
  392. $this->error('请完善收货信息');
  393. }
  394. $data = [
  395. 'user_id' => $user_id,
  396. 'province_id' => $input['province_id'],
  397. 'city_id' => $input['city_id'],
  398. 'area_id' => $input['area_id'],
  399. 'address' => $input['address'],
  400. 'name' => $input['name'],
  401. 'phone' => $input['phone'],
  402. 'default' => $input['default']
  403. ];
  404. Db::startTrans();
  405. try {
  406. if ($input['default'] == 1) {
  407. $user_address_model->save(['default' => 0], ['user_id' => $user_id]);
  408. }
  409. $user_address_model->insertGetId($data);
  410. Db::commit();
  411. $this->success('地址添加成功');
  412. } catch (ErrorException $e) {
  413. Db::rollback();
  414. $this->error('地址添加失败');
  415. }
  416. }
  417. /**
  418. * 编辑地址信息
  419. * @ApiMethod (POST)
  420. * @ApiParams (name=address_id,type="int", required=true,description="地址id")
  421. * @ApiParams (name=name,description="姓名")
  422. * @ApiParams (name=phone,description="手机号")
  423. * @ApiParams (name=province_id,type="int", required=true,description="省")
  424. * @ApiParams (name=city_id,type="int", required=true,description="市")
  425. * @ApiParams (name=area_id,type="int", required=true,description="区")
  426. * @ApiParams (name=address,description="详细地址")
  427. * @ApiParams (name=default,type="int", required=true,description="是否默认:1=默认")
  428. */
  429. public function edit_address()
  430. {
  431. $user_address_model = new UserAddress();
  432. $user_id = $this->auth->id;
  433. $input = input();
  434. if (empty($input['address_id'])) {
  435. $this->error('参数错误');
  436. }
  437. if (empty($input['province_id']) || empty($input['city_id']) || empty('area_id')) {
  438. $this->error('请选择省市区');
  439. }
  440. if (empty($input['address']) || empty($input['name']) || empty($input['phone'])) {
  441. $this->error('请完善收货信息');
  442. }
  443. $data = [
  444. 'user_id' => $user_id,
  445. 'province_id' => $input['province_id'],
  446. 'city_id' => $input['city_id'],
  447. 'area_id' => $input['area_id'],
  448. 'address' => $input['address'],
  449. 'name' => $input['name'],
  450. 'phone' => $input['phone'],
  451. 'default' => $input['default']
  452. ];
  453. Db::startTrans();
  454. try {
  455. if ($input['default'] == 1) {
  456. $user_address_model->save(['default' => 0], ['user_id' => $user_id]);
  457. }
  458. $user_address_model->save($data, ['id' => $input['address_id']]);
  459. Db::commit();
  460. $this->success('地址修改成功');
  461. } catch (ErrorException $e) {
  462. Db::rollback();
  463. $this->error('地址修改失败');
  464. }
  465. }
  466. /**
  467. * 用户地址信息
  468. * @ApiMethod (GET)
  469. * @ApiParams (name=limit,type="int", required=false,description="每页数量")
  470. * @ApiParams (name=page,type="int", required=false,description="页数")
  471. * @ApiReturnParams (name="city", type="string", required=true, description="省市区信息")
  472. * @ApiReturnParams (name="address", type="string", required=true, description="详细地址")
  473. * @ApiReturnParams (name="default", type="int", required=true, description="是否默认,1默认")
  474. * @ApiReturn ({"code":1,"msg":"用户地址列表","time":"1672037789","data":{"total":4,"per_page":"2","current_page":1,"last_page":2,"data":[{"id":2,"user_id":3,"name":"线下活动","phone":"13161001120","province_id":1,"city_id":2,"area_id":3,"address":"地址","default":1,"city":"北京北京市东城区"},{"id":4,"user_id":3,"name":"线下活动","phone":"13161001120","province_id":1,"city_id":2,"area_id":3,"address":"1","default":0,"city":"北京北京市东城区"}]}})
  475. */
  476. public function my_address()
  477. {
  478. $page = input('page', 1);
  479. $user_id = $this->auth->id;
  480. $user_address_model = new UserAddress();
  481. $query = $user_address_model->where('user_id', $user_id)->order('default', 'desc');
  482. $list = $query->paginate(input('limit', 10), false, ['page' => $page]);
  483. foreach ($list as &$v) {
  484. $v['city'] = city_name($v['province_id']) . city_name($v['city_id']) . city_name($v['area_id']);
  485. }
  486. $this->success('用户地址列表', $list);
  487. }
  488. /**
  489. * 删除地址信息
  490. * @ApiMethod (Delete)
  491. * @ApiParams (name=address_id,type="int", required=true,description="地址id")
  492. */
  493. public function del_address()
  494. {
  495. $user_address_model = new UserAddress();
  496. $user_id = $this->auth->id;
  497. $input = input();
  498. Db::startTrans();
  499. try {
  500. $user_address_model->where(['id' => $input['address_id'], 'user_id' => $user_id])->delete();
  501. Db::commit();
  502. $this->success('地址刪除成功');
  503. } catch (ErrorException $e) {
  504. Db::rollback();
  505. $this->error('地址刪除失败');
  506. }
  507. }
  508. /**
  509. * 功能订阅
  510. * @ApiMethod (Get)
  511. * @ApiReturnParams (name="lua", type="int", required=true, description="路亚专区消息通知:0=关,1=开")
  512. * @ApiReturnParams (name="hand_bar", type="int", required=true, description="手杆专区消息通知:0=关,1=开")
  513. * @ApiReturn ({"code":1,"msg":"ok","time":"1672126518","data":{"lua":1,"hand_bar":1}})
  514. */
  515. public function get_subscribe_message()
  516. {
  517. $user_id = $this->auth->id;
  518. $model = new UserSubscribeMessage();
  519. $data = $model::where('user_id', $user_id)->find();
  520. if (!$data) {
  521. $data['lua'] = 1;
  522. $data['hand_bar'] = 1;
  523. $data['user_id'] = $user_id;
  524. $model->insert($data);
  525. }
  526. $this->success('ok', ['lua' => $data['lua'], 'hand_bar' => $data['hand_bar']]);
  527. }
  528. /**
  529. * 功能订阅-保存
  530. * @ApiMethod (POST)
  531. * @ApiParams (name=lua,type="int", required=true,description="路亚专区消息通知:0=关,1=开")
  532. * @ApiParams (name=hand_bar,type="int", required=true,description="手杆专区消息通知:0=关,1=开")
  533. */
  534. public function post_subscribe_message()
  535. {
  536. $lua = $this->request->post('lua', 0);
  537. $hand_bar = $this->request->post('hand_bar', 0);
  538. if (!in_array($lua, [0, 1]) || !in_array($hand_bar, [0, 1])) {
  539. $this->error(__('Invalid parameters'));
  540. }
  541. $model = new UserSubscribeMessage();
  542. $data = [
  543. 'lua' => $lua,
  544. 'hand_bar' => $hand_bar,
  545. ];
  546. $model->save($data, ['user_id' => $this->auth->id]);
  547. $this->success('成功');
  548. }
  549. /**
  550. * 账户注销-提交
  551. * @ApiMethod (POST)
  552. * @ApiParams (name=logout_reason,type="string", required=true,description="账户注销理由")
  553. */
  554. public function user_logout()
  555. {
  556. $logout_reason = $this->request->post('logout_reason');
  557. if ($logout_reason == "") {
  558. $this->error(__('Invalid parameters'));
  559. }
  560. $model = new ModelUser();
  561. $user = $model::get($this->auth->id);
  562. if (!$user) {
  563. $this->error(__('Invalid parameters'));
  564. }
  565. $user->logout = 1;
  566. $user->logout_reason = $logout_reason;
  567. $user->save();
  568. $this->success('成功');
  569. }
  570. /**
  571. * 子账户创建
  572. *
  573. * @ApiMethod (POST)
  574. * @param string $mobile 手机号
  575. * @param string $password 密码
  576. * @param string $repassword 确认密码
  577. */
  578. public function son_register()
  579. {
  580. $password = $this->request->post('password');
  581. $repassword = $this->request->post('repassword');
  582. $mobile = $this->request->post('mobile');
  583. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  584. $this->error(__('Mobile is incorrect'));
  585. }
  586. if (!$password || !$repassword) {
  587. $this->error(__('Invalid parameters'));
  588. }
  589. if ($password != $repassword) {
  590. $this->error('密码和确认密码不一致!');
  591. }
  592. $user_id = $this->auth->id;
  593. $count = ModelUser::where('pid', $user_id)->count();
  594. if ($count >= 5) {
  595. $this->error('子账户不能超过5个');
  596. }
  597. $ret = $this->auth->sonRegister($user_id, $mobile, $password);
  598. if ($ret) {
  599. $data = ['userinfo' => $this->auth->getUserinfo()];
  600. $this->success(__('Sign up successful'));
  601. } else {
  602. $this->error($this->auth->getError());
  603. }
  604. }
  605. /**
  606. * 子账户列表
  607. *
  608. * @ApiMethod (GET)
  609. * @ApiReturnParams (name="images", type="string", required=true, description="图片")
  610. * @ApiReturnParams (name="images", type="string", required=true, description="图片")
  611. * @ApiReturn ({"code":1,"msg":"ok","time":"1672652501","data":[{"id":4,"username":"15550493042","createtime":1672651491,"prevtime_text":"","logintime_text":"","jointime_text":""}]})
  612. */
  613. public function son_user()
  614. {
  615. $user_id = $this->auth->id;
  616. $list = ModelUser::where('pid', $user_id)->field('id,username,createtime')->select();
  617. $this->success('ok', $list);
  618. }
  619. }