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