System.php 203 Bytes
<?php


namespace app\admin\controller;


class System extends Base
{
    //系统设置首页
    public function index(){
        $this->assign('data',[]);
        return $this->fetch('index');
    }
}