34 lines
600 B
PHP
34 lines
600 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types = 1);
|
||
|
|
|
||
|
|
namespace app\admin\controller\partview;
|
||
|
|
use app\AdminController;
|
||
|
|
use support\Response;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 部件查询后台控制器
|
||
|
|
* <!--Partview-->
|
||
|
|
*/
|
||
|
|
class Index extends AdminController {
|
||
|
|
|
||
|
|
// 初始化函数
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
parent::__construct();
|
||
|
|
/**
|
||
|
|
* TODO...
|
||
|
|
*/
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 初始化后台首页
|
||
|
|
* @return Response
|
||
|
|
*/
|
||
|
|
public function index(): Response
|
||
|
|
{
|
||
|
|
echo '后台 部件查询 控制器<br/>';
|
||
|
|
return $this->view();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|