Files
orico-official-website/app/index/controller/TopicLaptop.php
liqian c9bc2022e6
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 4s
笔记本
2025-12-05 09:56:55 +08:00

21 lines
289 B
PHP

<?php
declare (strict_types = 1);
namespace app\index\controller;
use think\facade\View;
use think\Request;
class TopicLaptop extends Common
{
/**
* 专题 - 笔记本电脑首页
*/
public function index()
{
return View::fetch('index');
}
}