Member.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\MemberHouseModel;
  4. use app\api\model\YzmModel;
  5. use app\common\controller\Api;
  6. use aliyun\api_demo\SmsDemo;
  7. use app\api\model\CodeModel;
  8. use app\api\model\MemberModel;
  9. use app\api\model\AppDataModel;
  10. use app\api\controller\Common;
  11. /**
  12. * 会员相关接口
  13. * @ApiWeigh (100)
  14. */
  15. class Member extends Api
  16. {
  17. protected $noNeedLogin = ['yzm','sendCode','register','create_qrcode','login','edit_password'];//,'my_keys','my_detail'
  18. protected $noNeedRight = ['*'];
  19. /**
  20. * 生成随机数字验证码图片
  21. * @ApiRoute (/api/member/yzm)
  22. * @ApiReturn ({
  23. "code": 1,
  24. "msg": "success",
  25. "time": "1603691703",
  26. "data": {
  27. "url": "/upload/verification_code_img/member_id_160369170339328.png", //验证码地址
  28. "rand": "160369170339328" //标识码,点击发送验证码也要传过来
  29. }
  30. })
  31. */
  32. function yzm($width = 80,$height = 40)
  33. {
  34. $str = '0123456789abcdefghizklmnopqrstuvwxyz'; // 也可取出类似的0il
  35. $code = substr(str_shuffle($str),0,'4');
  36. $rand=rand(10000,99999);
  37. $member_id=time().$rand;
  38. //判断文件夹是否存在,不存在则创建
  39. $dir = ROOT_PATH . 'public' . DS .'uploads/verification_code_img';
  40. if(!is_dir($dir)){
  41. mkdir($dir, 0777, true);
  42. }
  43. //验证码图片保存路径,文件名称
  44. $file_name = ROOT_PATH . 'public' . DS .'uploads/verification_code_img/'.$member_id.'.png';
  45. //域名返回
  46. $domain_name = config('site.cdnurl').'/uploads/verification_code_img/'.$member_id.'.png';
  47. $img = imagecreatetruecolor($width, $height);
  48. $black = imagecolorallocate($img, 0x00, 0x00, 0x00);
  49. $green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
  50. $white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
  51. imagefill($img,0,0,$white);
  52. imagestring($img, 5, 22, 12, $code, $black);
  53. //加入噪点干扰
  54. for($i=0;$i<100;$i++) {
  55. imagesetpixel($img, rand(0, $width) , rand(0, $width) , $black); //imagesetpixel — 画一个单一像素,语法: bool imagesetpixel ( resource $image , int $x , int $y , int $color )
  56. imagesetpixel($img, rand(0, $width) , rand(0, $width) , $green);
  57. }
  58. //输出验证码
  59. // header("content-type: image/png");
  60. imagepng($img,$file_name); //保存图片
  61. imagedestroy($img); //图像处理完成后,使用 imagedestroy() 指令销毁图像资源以释放内存,虽然该函数不是必须的,但使用它是一个好习惯。
  62. $log = ['code' => $code,
  63. 'rand' => $member_id,
  64. 'scene' => '图形验证码',
  65. 'time' => datetime(time())
  66. ];
  67. $addLog = YzmModel::create($log);
  68. $this->result('success', ['url'=>$domain_name,'rand'=>$member_id], 1);
  69. }
  70. /**
  71. * 发送短信验证码
  72. *
  73. * @ApiMethod (POST)
  74. * @ApiRoute (/api/member/sendCode)
  75. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  76. * @ApiParams (name="rand", type="string", required=true, description="标识码")
  77. * @ApiParams (name="code", type="string", required=true, description="输入的图形验证码")
  78. * @ApiParams (name="scene", type="string", required=true, description=" 1 注册发送验证码,2 找回密码验证码")
  79. * @ApiReturn ({
  80. 'code':'1', //0是失败,弹出msg提示
  81. 'msg':'验证码已发送'
  82. })
  83. */
  84. public function sendCode()
  85. {
  86. $mobile = $this->request->post('mobile');
  87. $rand= $this->request->post('rand');
  88. $code= $this->request->post('code');
  89. $scene= $this->request->post('scene');
  90. if (empty($code)){
  91. $this->result('请输入图形验证码');
  92. }
  93. if (!$mobile || !$rand || !$code) {
  94. $this->result('参数错误');
  95. }
  96. if (empty($scene)){
  97. $scene=1;
  98. }
  99. // $ip=get_ip();
  100. $check_code = CodeModel::where('mobile', $mobile)->where('scene',$scene)
  101. ->order('id desc')
  102. ->find();
  103. $sendTime = strtotime($check_code['time']);
  104. if (time() - $sendTime < 300) {
  105. $this->result('5分钟之后才可以发送');
  106. }
  107. $get_yzm=YzmModel::where('rand',$rand)->where('status','0')->order('id','desc')->find();
  108. if (empty($get_yzm)){
  109. $this->result('图形验证码错误!');
  110. }
  111. $sendTime = strtotime($get_yzm['time']);
  112. if (time() - $sendTime > 300) {//分钟过期
  113. $this->result('图形验证码已过期');
  114. }
  115. if ($code !=$get_yzm['code']){
  116. $this->result('图形验证码错误');
  117. }else{
  118. YzmModel::where('id',$get_yzm['id'])->update(['status'=>'1']);
  119. }
  120. $code = rand(1000, 9999);
  121. // $Sms = new SmsDemo();
  122. // $send = $Sms->sendSms($mobile, $code);
  123. // if ($send->Message == 'OK') {
  124. // $log = ['code' => $code,
  125. // 'mobile' => $mobile,
  126. // 'scene' =>$scene,
  127. // 'time' => datetime(time())
  128. // ];
  129. // $addLog = CodeModel::create($log);
  130. // if ($addLog) {
  131. // $this->result('验证码已发送', [], 1);
  132. // } else {
  133. // $this->result('验证码发送失败');
  134. // }
  135. // } else {
  136. // $this->result('验证码发送失败');
  137. // }
  138. $log = ['code' => '1234',
  139. 'mobile' => $mobile,
  140. 'scene' =>$scene,
  141. 'time' => datetime(time())
  142. ];
  143. $addLog = CodeModel::create($log);
  144. if ($addLog) {
  145. $this->result('验证码已发送', [], 1);
  146. } else {
  147. $this->result('验证码发送失败');
  148. }
  149. }
  150. /**
  151. * 用户注册
  152. *
  153. * @ApiTitle (用户注册)
  154. * @ApiSummary (用户注册)
  155. * @ApiMethod (POST)
  156. * @ApiRoute (/api/member/register)
  157. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  158. * @ApiParams (name="check_code", type="int", required=true, description="短信验证码")
  159. * @ApiParams (name="password", type="int", required=true, description="密码")
  160. */
  161. public function register()
  162. {
  163. $mobile = $this->request->post('mobile');
  164. $checkCode = $this->request->post('check_code');
  165. $password = $this->request->post('password');
  166. if (!$mobile || !$checkCode || !$password) {
  167. $this->result('参数错误');
  168. }
  169. // 验证验证码
  170. $check_code = CodeModel::where('mobile', $mobile)->where('scene','1')
  171. ->order('id desc')
  172. ->limit(0, 1)
  173. ->select();
  174. if (empty($check_code)) {
  175. $this->result('验证码错误');
  176. }
  177. if ($check_code[0]['code'] != $checkCode) {
  178. $this->result('验证码错误');
  179. }
  180. $sendTime = strtotime($check_code[0]['time']);
  181. if (time() - $sendTime > 300) {//5分钟过期时间
  182. $this->result('验证码已过期');
  183. }
  184. $get_is_user=MemberModel::where('mobile', $mobile)->field('id')->find();
  185. if (!empty($get_is_user)){
  186. $this->result('手机号已经注册,请直接登录或者找回密码');
  187. }else{
  188. $where = ['id' => 1];
  189. $defaultField = ['default_nickname', 'default_avatar'];
  190. $default = AppDataModel::where($where)->field($defaultField)->find();//-----------
  191. $info = [
  192. 'avatar' => $default['default_avatar'],
  193. 'nickname' => substr_replace($mobile,'****',3,4),//$default['default_nickname'],
  194. 'mobile' => $mobile,
  195. 'rands' =>createSalt(),
  196. 'password'=>md5(trim($password)),
  197. 'create_time' => datetime(time()),
  198. ];
  199. $createId = MemberModel::insertGetId($info);
  200. if ($createId) {
  201. $this->result('恭喜你成功注册新天物业', ['user_id' => intval($createId)], 1);
  202. // MemberModel::where('mobile', $mobile)->setInc('login_num', 1);
  203. // 生成token
  204. // $salt = createSalt();
  205. // $token = md5($createId.$salt);
  206. // // 更新token和随机码salt
  207. // $updateToken = MemberModel::where('mobile', $mobile)
  208. // ->update(['salt' => $salt, 'token' => $token]);
  209. // if ($updateToken) {
  210. // if (!empty($top_id)){
  211. // MemberModel::where('id', $top_id)->setInc('down_people');
  212. // }
  213. //
  214. // // $this->result('恭喜你成功注册新天物业', ['user_id' => intval($createId), 'token' => $token,'rands'=>$info['rands']], 1);
  215. // } else {
  216. // $this->result('登录失败', null, 0);
  217. // }
  218. } else {
  219. $this->result('注册失败', null, 0);
  220. }
  221. }
  222. }
  223. /**
  224. * 用户登录
  225. *
  226. * @ApiTitle (用户登录)
  227. * @ApiSummary (用户登录)
  228. * @ApiMethod (POST)
  229. * @ApiRoute (/api/member/login)
  230. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  231. * @ApiParams (name="password", type="int", required=true, description="密码")
  232. */
  233. public function login()
  234. {
  235. $mobile = $this->request->post('mobile');
  236. $password = $this->request->post('password');
  237. if (!$mobile || !$password) {
  238. $this->result('参数错误');
  239. }
  240. $user = MemberModel::where('mobile', $mobile)->where('password',md5(trim($password)))->field('id,rands')->find();
  241. if (!$user){
  242. $this->result('账号或密码错误,请重新登录');
  243. }else{
  244. $get_hu=MemberHouseModel::where('mid',$user['id'])->where('is_delete','0')->field('id')->find();
  245. if (empty($get_hu)){
  246. $user['hu_id']=0;
  247. }else{
  248. $user['hu_id']=$get_hu['id'];
  249. }
  250. MemberModel::where('id', $user['id'])->setInc('login_num', 1);
  251. // 生成token
  252. $salt = createSalt();
  253. $token = md5($user['id'].$salt);
  254. // 更新token和随机码salt
  255. $updateToken = MemberModel::where('mobile', $mobile)
  256. ->update(['salt' => $salt, 'token' => $token]);
  257. if ($updateToken) {
  258. $this->result('登录成功',['user_id' => $user['id'], 'token' => $token,'rands'=>$user['rands'],'hu_id'=>$user['hu_id']], 1);
  259. } else {
  260. $this->result('登录失败', null, 0);
  261. }
  262. }
  263. }
  264. /**
  265. * 找回密码
  266. *
  267. * @ApiTitle (找回密码)
  268. * @ApiSummary (找回密码)
  269. * @ApiMethod (POST)
  270. * @ApiRoute (/api/member/edit_password)
  271. * @ApiParams (name="mobile", type="varchar", required=true, description="用户手机号")
  272. * @ApiParams (name="check_code", type="int", required=true, description="短信验证码")
  273. * @ApiParams (name="password", type="int", required=true, description="密码")
  274. */
  275. public function edit_password()
  276. {
  277. $mobile = $this->request->post('mobile');
  278. $checkCode = $this->request->post('check_code');
  279. $password = $this->request->post('password');
  280. if (!$mobile || !$checkCode || !$password) {
  281. $this->result('参数错误');
  282. }
  283. // 验证验证码
  284. $check_code = CodeModel::where('mobile', $mobile)->where('scene','2')
  285. ->order('id desc')
  286. ->limit(0, 1)
  287. ->select();
  288. if (empty($check_code)) {
  289. $this->result('验证码错误');
  290. }
  291. if ($check_code[0]['code'] != $checkCode) {
  292. $this->result('验证码错误');
  293. }
  294. $sendTime = strtotime($check_code[0]['time']);
  295. if (time() - $sendTime > 300) {//5分钟过期时间
  296. $this->result('验证码已过期');
  297. }
  298. $user = MemberModel::where('mobile', $mobile)->field('id,rands')->find();
  299. if (empty($user)){
  300. $this->result('您的手机号还未注册用户,请注册');
  301. }
  302. MemberModel::where('id', $user['id'])->setInc('login_num', 1);
  303. // 生成token
  304. $salt = createSalt();
  305. $token = md5($user['id'].$salt);
  306. // 更新token和随机码salt
  307. $updateToken = MemberModel::where('mobile', $mobile)
  308. ->update(['salt' => $salt, 'token' => $token,'password'=>md5(trim($password))]);
  309. if ($updateToken) {
  310. $this->result('密码修改成功',['user_id' => $user['id'], 'token' => $token,'rands'=>$user['rands']], 1);
  311. } else {
  312. $this->result('登录失败', null, 0);
  313. }
  314. }
  315. /**
  316. * 我的信息
  317. *
  318. * @ApiTitle (我的信息)
  319. * @ApiSummary (我的信息)
  320. * @ApiMethod (POST)
  321. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  322. * @ApiRoute (/api/member/my_detail)
  323. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  324. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  325. * @ApiParams (name="house_id", type="int", required=true, description="房产id")
  326. * @ApiReturn ({
  327. "code": 1,
  328. "msg": "success",
  329. "time": "1604474877",
  330. "data": {
  331. "id": 1,//用户id
  332. "top_id": 0,
  333. "top_top_id": 0,
  334. "rands": "igqwpg",
  335. "avatar": "http://baoxiang.com//assets/img/qrcode.png",//用户头像
  336. "nickname": "默认昵称 ",//昵称
  337. "name": "",
  338. "price": null,
  339. "profile": "",
  340. "mobile": "13512144196",
  341. "wx_code": "",
  342. "sex": 0,
  343. "openid": "",
  344. "now_money": "0.00",//当前余额
  345. "down_people": 0,//下级人数
  346. "create_time": "2020-11-02 09:43:10",
  347. "login_num": 9,
  348. "status": 1,
  349. "salt": "pjxwqm",
  350. "token": "70780f043d7ffaf239c73095d5a2f808"
  351. }
  352. })
  353. */
  354. public function my_detail(){
  355. $userId = $this->request->post('user_id');
  356. $house_id = $this->request->post('house_id');
  357. if (empty($userId)){
  358. $this->result('登录信息丢失');
  359. }
  360. //
  361. $my=MemberModel::where(['id'=>$userId])->find();
  362. if (!empty($house_id)){
  363. $where['id']=$house_id;
  364. }
  365. $where['mid']=$userId;
  366. $where['is_delete']='0';
  367. $list=MemberHouseModel::where($where)
  368. ->with(['property','village','dong','danyuan','hu'])
  369. ->find();
  370. $my['house']='';
  371. if (!empty($list)){
  372. $my['house']=$list['village']['name'].$list['dong']['name'].$list['danyuan']['name'].$list['hu']['name'];
  373. }
  374. $this->result('success', $my, 1);
  375. }
  376. /**
  377. * 修改信息-昵称+头像
  378. *
  379. * @ApiTitle (修改信息-昵称+头像)
  380. * @ApiSummary (修改信息-昵称+头像)
  381. * @ApiMethod (POST)
  382. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  383. * @ApiRoute (/api/member/my_edit)
  384. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  385. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  386. * @ApiParams (name="nickname", type="string", required=true, description="昵称")
  387. * @ApiParams (name="avatar", type="string", required=true, description="头像地址")
  388. * @ApiParams (name="sex", type="string", required=true, description="未知,男,女")
  389. * @ApiReturn ()
  390. */
  391. public function my_edit(){
  392. $userId = $this->request->post('user_id');
  393. $nickname= $this->request->post('nickname');
  394. $avatar = $this->request->post('avatar');
  395. $sex = $this->request->post('sex');
  396. if (empty($userId)){
  397. $this->result('登录信息丢失');
  398. }
  399. $update=[];
  400. if (!empty($nickname)){
  401. $update['nickname']=preg_replace('/[\xf0-\xf7].{3}/', '', trim($nickname));
  402. }
  403. if (!empty($avatar)){
  404. $update['avatar']=$avatar;
  405. }
  406. if (!empty($sex)){
  407. $update['sex']=$sex;
  408. }else{
  409. $update['sex']='未知';
  410. }
  411. if (!empty($update)){
  412. MemberModel::where(['id'=>$userId])->update($update);
  413. $this->result('信息修改成功', [], 1);
  414. }else{
  415. $this->result('没修改任何信息');
  416. }
  417. }
  418. /**
  419. * 微信登录
  420. *
  421. * @ApiTitle (微信登录)
  422. * @ApiSummary (微信登录)
  423. * @ApiMethod (POST)
  424. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  425. * @ApiRoute (/api/member/wx_login)
  426. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  427. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  428. * @ApiParams (name="code", type="int", required=true, description="微信code")
  429. * @ApiReturn ()
  430. */
  431. public function wx_login()
  432. {
  433. $userId = $this->request->post('user_id');
  434. if (empty($userId)){
  435. $this->result('登录信息丢失');
  436. }
  437. $code = $this->request->post('code');
  438. if (!isset($code)) {
  439. return $this->result('未接收到code', []);
  440. }
  441. $appid = 'wxbe636a16aae015f9';
  442. $appsecret = '46a02319143e8c2f9b1d96104bd467e7';
  443. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $appsecret . '&code=' . $code . '&grant_type=authorization_code';
  444. $tokens =http_curl($access_token_url);
  445. if (isset($tokens['openid'])) {
  446. $member=MemberModel::where('id',$userId)->update(['openid'=>$tokens['openid']]);
  447. return $this->result('success', '', 200);
  448. } else {
  449. return $this->result('网络错误104');
  450. }
  451. }
  452. /**
  453. * 我的房屋列表
  454. *
  455. * @ApiTitle (我的房屋列表)
  456. * @ApiSummary (我的房屋列表)
  457. * @ApiMethod (POST)
  458. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  459. * @ApiRoute (/api/member/my_house_list)
  460. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  461. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  462. * @ApiReturn ()
  463. */
  464. public function my_house_list(){
  465. $userId = $this->request->post('user_id');
  466. if (empty($userId)){
  467. $this->result('登录信息丢失');
  468. }
  469. $list=MemberHouseModel::where(['mid'=>$userId,'is_delete'=>'0'])
  470. ->with(['property','village','dong','danyuan','hu'])
  471. ->select();
  472. foreach ($list as $k=>$v){
  473. $list[$k]['house']=$v['property']['name']." ".$v['village']['name']." ".$v['danyuan']['name']." ".$v['hu']['name'];
  474. }
  475. $this->result('房屋列表', $list, 1);
  476. }
  477. /**
  478. * 绑定住房信息
  479. *
  480. * @ApiTitle (绑定住房信息)
  481. * @ApiSummary (绑定住房信息)
  482. * @ApiMethod (POST)
  483. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  484. * @ApiRoute (/api/member/my_house_add)
  485. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  486. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  487. * @ApiParams (name="property_id", type="int", required=true, description="物业id")
  488. * @ApiParams (name="village_id", type="int", required=true, description="小区id")
  489. * @ApiParams (name="dong_id", type="int", required=true, description="楼宇id")
  490. * @ApiParams (name="danyuan_id", type="int", required=true, description="单元id")
  491. * @ApiParams (name="hu_id", type="int", required=true, description="户id")
  492. * @ApiReturn ()
  493. */
  494. public function my_house_add(){
  495. $userId = $this->request->post('user_id');
  496. if (empty($userId)){
  497. $this->result('登录信息丢失');
  498. }
  499. $property_id = $this->request->post('property_id');
  500. $village_id = $this->request->post('village_id');
  501. $dong_id = $this->request->post('dong_id');
  502. $danyuan_id = $this->request->post('danyuan_id');
  503. $hu_id= $this->request->post('hu_id');
  504. $update=[
  505. 'property_id'=>$property_id,
  506. 'village_id'=>$village_id,
  507. 'dong_id'=>$dong_id,
  508. 'danyuan_id'=>$danyuan_id,
  509. 'hu_id'=>$hu_id,
  510. 'mid'=>$userId,
  511. 'createtime'=>time(),
  512. 'updatetime'=>time()
  513. ];
  514. MemberHouseModel::insert($update);
  515. $this->result('住房绑定成功', '', 1);
  516. }
  517. /**
  518. * 解绑住房信息
  519. *
  520. * @ApiTitle (解绑住房信息)
  521. * @ApiSummary (解绑住房信息)
  522. * @ApiMethod (POST)
  523. * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  524. * @ApiRoute (/api/member/my_house_del)
  525. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  526. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  527. * @ApiParams (name="house_id", type="int", required=true, description="住房绑定列表id")
  528. * @ApiReturn ()
  529. */
  530. public function my_house_del(){
  531. $userId = $this->request->post('user_id');
  532. if (empty($userId)){
  533. $this->result('登录信息丢失');
  534. }
  535. $house_id = $this->request->post('house_id');
  536. MemberHouseModel::where(['mid'=>$userId,'id'=>$house_id])->update(['is_delete'=>'1']);
  537. $this->result('住房解绑成功', '', 1);
  538. }
  539. /**
  540. * 退出登录
  541. *
  542. * @ApiTitle (退出登录)
  543. * @ApiSummary (退出登录)
  544. * @ApiMethod (POST)
  545. * @ApiRoute (/api/member/out)
  546. * @ApiParams (name="user_id", type="int", required=true, description="用户id")
  547. * @ApiParams (name="token", type="int", required=true, description="请求的Token")
  548. */
  549. public function out()
  550. {
  551. $userId = $this->request->post('user_id');
  552. if (empty($userId)){
  553. $this->result('登录信息丢失');
  554. }
  555. $updateToken = MemberModel::where('id', $userId)
  556. ->update(['salt' => '0', 'token' => '0']);
  557. $this->result('成功退出','', 1);
  558. }
  559. }