cxhxy/app/index/controller/Contact.php
test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

20 lines
324 B
PHP
Executable File

<?php
namespace app\index\controller;
use think\facade\View;
/**
* 页面
*/
class Contact extends Controller
{
public function index()
{
View::assign('key', 'contact');
View::assign('title', '联系我们');
View::assign('description', '');
View::assign('keywords', '');
return View::fetch();
}
}