dashboard
repositories
filestore
activity
search
login
main
/
companyProjecet
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
完成名片列表功能 完成名片筛选功能 完成查看名片详情 完成购买名片查看联系方式
quanwei
2025-10-30
2b728186c745b598e8ccb9dcc37360eed49375f6
[companyProjecet.git]
/
admin
/
app
/
admin
/
controller
/
Index.php
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'));
}
}