Compare commits

...

2 Commits

Author SHA1 Message Date
邹景立
c8f0343c2c Update Index.php 2022-11-27 16:34:48 +08:00
邹景立
649e6757f1 增加 Center 模块 2022-11-27 15:59:40 +08:00
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<?php
namespace app\center\controller;
use think\admin\Controller;
/**
* 应用插件中心
* Class Index
* @package app\center\contrller
*/
class Index extends Controller
{
/**
* 显示插件中心
* @auth true
* @menu true
* @return void
*/
public function index()
{
$this->fetch();
}
/**
* 显示我的插件
* @auth true
* @return void
*/
public function plugin()
{
$this->fetch();
}
}

View File

@ -0,0 +1,24 @@
<?php
namespace app\center\controller;
use think\admin\Controller;
/**
* 在线插件管理
* Class Plugin
* @package app\center\controller
*/
class Plugin extends Controller
{
/**
* 在线插件管理
* @auth true
* @menu true
* @return void
*/
public function index()
{
$this->fetch();
}
}