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(); },