dashboard
repositories
filestore
activity
search
login
changjiang_park
/
changjiang_park
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
提交
chengkun
2025-09-15
cff43dbd99d99189864acd591f856a38e87c5b09
[changjiang_park/changjiang_park.git]
/
app
/
home
/
controller
/
About.php
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace app\home\controller;
use think\facade\View;
use think\facade\Request;
use app\BaseController;
class About extends BaseController {
public function index() {
return View::fetch('index');
}
}