From e821362b6ce58c4a3481c87bd9f8c1675d15a839 Mon Sep 17 00:00:00 2001 From: Chenx221 Date: Fri, 16 Feb 2024 14:04:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=8B=E5=88=B6=E8=AD=A6=E5=91=8A=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qodana.yaml | 2 +- views/home/index.php | 4 ++-- web/css/home_style.css | 2 +- web/js/home_script.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qodana.yaml b/qodana.yaml index 630c7bd..0c536d3 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -19,7 +19,7 @@ profile: # - php: - version: 8.2 #(Applied in CI/CD pipeline) + version: "8.2" #(Applied in CI/CD pipeline) #Execute shell command before Qodana execution (Applied in CI/CD pipeline) #bootstrap: sh ./prepare-qodana.sh diff --git a/views/home/index.php b/views/home/index.php index c36d0d5..6a686aa 100644 --- a/views/home/index.php +++ b/views/home/index.php @@ -98,7 +98,7 @@ $this->registerCssFile('@web/css/home_style.css'); - + @@ -110,7 +110,7 @@ $this->registerCssFile('@web/css/home_style.css'); user->id . '/' . $relativePath; ?> - +
名称 最近修改时间 大小
$item['type'] . ' file_icon']) ?> diff --git a/web/css/home_style.css b/web/css/home_style.css index d6c6c0a..b12ead9 100644 --- a/web/css/home_style.css +++ b/web/css/home_style.css @@ -25,7 +25,7 @@ table a { line-height: 2; } .selector-col{ - width: 0%; + width: 0; } .name-col { width: 50%; diff --git a/web/js/home_script.js b/web/js/home_script.js index ccd4075..0ae8cfb 100644 --- a/web/js/home_script.js +++ b/web/js/home_script.js @@ -152,7 +152,7 @@ $(document).on('click', '.batch-paste-btn', function () { type: "POST", url: "index.php?r=home%2Fpaste", data: { operation: operation, relativePaths: relativePaths, targetDirectory: targetDirectory }, - success: function(response) { + success: function() { // 处理响应 location.reload(); }, @@ -200,7 +200,7 @@ $(document).on('click', '.batch-delete-btn', function () { type: "POST", url: "index.php?r=home%2Fdelete", data: { relativePath: relativePaths }, - success: function(response) { + success: function() { // 处理响应 location.reload(); },