23 lines
399 B
PHP
23 lines
399 B
PHP
<?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();
|
|
}
|
|
|
|
} |