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