20 lines
329 B
PHP
Executable File
20 lines
329 B
PHP
Executable File
<?php
|
|
|
|
namespace plugin\admin\app\controller;
|
|
|
|
use support\Request;
|
|
use support\Response;
|
|
use support\think\Db;
|
|
|
|
/**
|
|
* 单页管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class SinglePageController extends ArchivesController
|
|
{
|
|
protected $type = 'page';
|
|
protected $tpl = 'singlepage';
|
|
protected $relationSearch = [];
|
|
}
|