mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-05-10 09:38:58 +08:00
24 lines
344 B
PHP
24 lines
344 B
PHP
<?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();
|
|
}
|
|
} |