系统设置页面(1/3)
This commit is contained in:
parent
74ff387c5d
commit
72cce4f32d
@ -1,8 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
/** @var yii\web\View $this */
|
/* @var $this yii\web\View */
|
||||||
?>
|
|
||||||
<h1>admin/index</h1>
|
use app\models\SiteConfig;
|
||||||
|
use yii\bootstrap5\Html;
|
||||||
|
|
||||||
|
$this->title = '系统设置';
|
||||||
|
$siteConfig = new SiteConfig();
|
||||||
|
$siteConfig->loadFromEnv();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="admin-system">
|
||||||
|
|
||||||
|
<h1><?= Html::encode($this->title) ?></h1>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>
|
|
||||||
这里是管理员页面.建设中
|
|
||||||
</p>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user