IndexController.php 323 B

1234567891011121314151617
  1. <?php
  2. namespace app\index\controller;
  3. use cmf\controller\HomeBaseController;
  4. use think\Db;
  5. class IndexController extends HomeBaseController
  6. {
  7. public function index()
  8. {
  9. return $this->fetch();
  10. }
  11. public function ws()
  12. {
  13. return $this->fetch(':ws');
  14. }
  15. }
  16. ?>