Index.php 315 B

1234567891011121314151617181920
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\controller;
  4. use think\facade\View;
  5. class Index
  6. {
  7. public function index()
  8. {
  9. echo "网站首页";
  10. }
  11. public function treaty(){
  12. return View::fetch('treaty');
  13. }
  14. public function h5(){
  15. return View::fetch('mobile');
  16. }
  17. }