| 1234567891011121314151617 |
- <?php
- namespace app\index\controller;
- use cmf\controller\HomeBaseController;
- use think\Db;
- class SearchController extends HomeBaseController
- {
- public function index()
- {
- return $this->fetch();
- }
-
- public function res(){
- return $this->fetch();
- }
- }
- ?>
|