24 lines
403 B
PHP
24 lines
403 B
PHP
<?php
|
|
|
|
namespace app\DeviceEnter\controller\admin;
|
|
|
|
use think\Controller;
|
|
use think\Db;
|
|
use think\Cache;
|
|
use think\Log;
|
|
use PHPMailer\PHPMailer\PHPMailer;
|
|
|
|
class Index extends Base{
|
|
|
|
public function index(){
|
|
// $this->assign('domain',$a);
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function welcome(){
|
|
// $this->assign('domain',$a);
|
|
return $this->fetch();
|
|
}
|
|
|
|
|
|
} |