16 lines
276 B
PHP
Executable File
16 lines
276 B
PHP
Executable File
<?php
|
|
namespace wstmart\app\controller;
|
|
/**
|
|
* ============================================================================
|
|
* 默认控制器
|
|
*/
|
|
class Juhui extends Base{
|
|
/**
|
|
* 首页
|
|
*/
|
|
public function index(){
|
|
return $this->fetch('juhui');
|
|
}
|
|
|
|
}
|