PDM更新数据结构后,基础数据查询和BOM初始查询等基本功能都已经OK,待完善和细化相关的上传和下载服务等。
This commit is contained in:
33
app/admin/controller/partlist/Index.php
Normal file
33
app/admin/controller/partlist/Index.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
declare(strict_types = 1);
|
||||
|
||||
namespace app\admin\controller\partlist;
|
||||
use app\AdminController;
|
||||
use support\Response;
|
||||
|
||||
/**
|
||||
* BOM管理后台控制器
|
||||
* <!--Partlist-->
|
||||
*/
|
||||
class Index extends AdminController {
|
||||
|
||||
// 初始化函数
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
/**
|
||||
* TODO...
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化后台首页
|
||||
* @return Response
|
||||
*/
|
||||
public function index(): Response
|
||||
{
|
||||
echo '后台 BOM管理 控制器<br/>';
|
||||
return $this->view();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user