quanwei
2025-11-21 2d9362ae6f528f57e6133d5d80f0b633c24e8eb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 
namespace app\admin\controller;
/**
 * 后台首页
 */
class Index extends Controller
{
    /**
     * 后台首页
     */
    public function index()
    {
        $version = get_version();
        return $this->renderSuccess('', compact('version'));
    }
}