You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
453 B
24 lines
453 B
<?php
|
|
namespace app\index\controller;
|
|
|
|
use think\Controller;
|
|
use think\Db;
|
|
use \app\index\model\Option;
|
|
use \app\index\model\User;
|
|
|
|
class Index extends Controller{
|
|
|
|
public $userObj;
|
|
|
|
public function index(){
|
|
|
|
$this->userObj = new User(cookie('user_id'),cookie('login_key'));
|
|
$userInfo = $this->userObj->getInfo();
|
|
return view('index', [
|
|
'options' => Option::getValues(['basic']),
|
|
'userInfo' => $userInfo,
|
|
]);
|
|
}
|
|
|
|
}
|