Captcha.php 216 B

12345678910111213141516
  1. <?php
  2. namespace app\worker\controller;
  3. use think\facade\View;
  4. class Captcha
  5. {
  6. // 验证码表单
  7. public function index()
  8. {
  9. // return View::fetch('captcha');
  10. // return $this->fetch();
  11. }
  12. }