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