NewsController.php 309 B

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