From e9e8ebd39516bf72a126bceb11e34a73d455eb97 Mon Sep 17 00:00:00 2001 From: filesite Date: Fri, 10 May 2024 07:46:36 +0800 Subject: [PATCH] show stats in index page --- themes/tajian/controller/SiteController.php | 4 +++- themes/tajian/views/site/tajian.php | 16 ++++++++++++++++ www/css/tajian.css | 9 +++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/themes/tajian/controller/SiteController.php b/themes/tajian/controller/SiteController.php index 7330bc0..495b646 100644 --- a/themes/tajian/controller/SiteController.php +++ b/themes/tajian/controller/SiteController.php @@ -93,10 +93,12 @@ Class SiteController extends Controller { protected function renderTajianIndex() { $pageTitle = "Ta荐:好用的视频收藏夹,帮你整理不同平台的好视频,轻松分享给朋友!"; + $stats = TajianStats::init(); + $this->layout = 'index'; $viewName = 'tajian'; $params = compact( - 'pageTitle' + 'pageTitle', 'stats' ); return $this->render($viewName, $params, $pageTitle); } diff --git a/themes/tajian/views/site/tajian.php b/themes/tajian/views/site/tajian.php index 57b8e6c..ddf64fe 100644 --- a/themes/tajian/views/site/tajian.php +++ b/themes/tajian/views/site/tajian.php @@ -60,4 +60,20 @@ if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['use

其它App和网站将陆续增加。。。

+

统计数据

+
+ + + + + + + + + + + + +
+ diff --git a/www/css/tajian.css b/www/css/tajian.css index d5fe252..488bae9 100644 --- a/www/css/tajian.css +++ b/www/css/tajian.css @@ -252,6 +252,15 @@ a:link{text-decoration:none;} .btn-primary:hover,.btn-danger:hover{font-weight:500} .bi{width:1em;height:1em;display:inline-block;vertical-align:-.125em;fill:currentcolor} +.stats{background-color:#EEE;padding:10px 10px 4px 10px} +.stats .col{display:inline-block;padding:13px 4px;width:30%;background:#444;color:#FFF;margin-right:4px;margin-bottom:6px;text-align:center} +.stats .col strong{font-size:28px} +.stats .col label{display:block;font-size:15px} +.stats .info{background-color:darkblue} +.stats .success{background-color:green} +.stats .warning{background-color:orange;color:#444} +.stats .danger{background-color:red} + /* 注册/登录 */ .twocol label{display:block} .twocol input{width:62%}