Login.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * Created by PhpStorm
  4. * User: 林志杰
  5. * Email: [email protected]
  6. * Time: 2020/1/2 12:58
  7. */
  8. namespace app\admin\controller;
  9. use app\BaseController;
  10. use think\facade\View;
  11. class Login extends BaseController
  12. {
  13. public function index()
  14. {
  15. return View::fetch();
  16. }
  17. public function check()
  18. {
  19. if (!$this->request->isPost()) {
  20. return show(config('status.error'), '请求方式错误');
  21. }
  22. // 参数校验 1、原生方式 2、TP6 验证机制
  23. $username = $this->request->param('username', '', 'trim');
  24. $password = $this->request->param('password', '', 'trim');
  25. $captcha = $this->request->param('captcha', '', 'trim');
  26. if (empty($username) || empty($password) || empty($captcha)) {
  27. return show(config('status.error'), '参数不能为空');
  28. }
  29. // 验证码校验
  30. if (!captcha_check($captcha)) {
  31. // 验证码校验失败
  32. return show(config('status.error'), '验证码不正确');
  33. }
  34. return show(config('status.success'), '登陆成功');
  35. }
  36. }