修改逻辑

This commit is contained in:
筱锋xiao_lfeng 2023-06-13 23:53:30 +08:00
parent 9b2337d76b
commit 0220fd272c

View File

@ -20,7 +20,6 @@ class Index extends Controller
public function __construct()
{
if (Auth::check()) {
$this->data = [
'webTitle' => empty($tempStorage = DB::table('info')->find(1)->data) ? '未定义标题' : $tempStorage,
'webDescription' => empty($tempStorage = DB::table('info')->find(2)->data) ? '未定义副标题' : $tempStorage,
@ -30,9 +29,6 @@ public function __construct()
'webHeader' => DB::table('info')->find(7)->data,
'webFooter' => DB::table('info')->find(8)->data,
'webKeyword' => empty($tempStorage = DB::table('info')->find(6)->data) ? '筱锋,凌中的锋雨,xiao_lfeng' : $tempStorage,
'userName' => Auth::user()->username,
'userEmail' => Auth::user()->email,
'userIcon' => Auth::user()->icon,
'sqlAuthor' => empty($tempStorage = DB::table('info')->find(12)->data) ? '筱锋xiao_lfeng' : $tempStorage,
'sqlCopyRightYear' => DB::table('info')->find(13)->data,
'sqlIcp' => DB::table('info')->find(10)->data,
@ -43,8 +39,11 @@ public function __construct()
preg_match('/[0-9]+/', $this->data['sqlGongan'], $data);
$this->data = array_merge($this->data, ['GonganCode' => $data[0]]);
}
} else {
$this->data = array();
if (Auth::check()) {
$this->data = array_merge($this->data,[
'userName' => Auth::user()->username,
'userEmail' => Auth::user()->email,
'userIcon' => Auth::user()->icon]);
}
}