系统设置页面(1/3)

This commit is contained in:
Chenx221 2024-03-29 16:38:18 +08:00
parent 74ff387c5d
commit 72cce4f32d
Signed by: chenx221
GPG Key ID: D7A9EC07024C3021

View File

@ -1,8 +1,17 @@
<?php
/** @var yii\web\View $this */
?>
<h1>admin/index</h1>
/* @var $this yii\web\View */
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>