SchoolPhysicalExamination/application/admin/controller/Index.php

23 lines
399 B
PHP
Raw Normal View History

2024-03-01 18:31:19 +08:00
<?php
namespace app\admin\controller;
use think\Controller;
use think\Db;
use app\bj\controller\Common;
use think\Log;
use \think\Validate;
class Index extends Controller{
public function index(){
// $this->assign('domain',$a);
return $this->fetch();
}
public function welcome(){
// $this->assign('domain',$a);
return $this->fetch();
}
}