更新插件的前台默认的显示页面,控制器的 bool变量名称更新后可以正常显示。

This commit is contained in:
panx
2024-08-17 22:22:12 +08:00
parent c26870b8c5
commit f2b899bd0b
29 changed files with 699 additions and 2 deletions

View File

@@ -0,0 +1,33 @@
<?php
declare(strict_types = 1);
namespace app\admin\controller\partmanage;
use app\AdminController;
use support\Response;
/**
* 部件管理后台控制器
* <!--Partmanage-->
*/
class Index extends AdminController {
// 初始化函数
public function __construct()
{
parent::__construct();
/**
* TODO...
*/
}
/**
* 初始化后台首页
* @return Response
*/
public function index(): Response
{
echo '后台 部件管理 控制器<br/>';
return $this->view();
}
}