Search.php 261 B

1234567891011121314151617
  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Search extends Base
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function index()
  11. {
  12. return $this->label_fetch('search/index');
  13. }
  14. }