From 61f9792395547b12974baf0d8658efd5ca9262a1 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Mon, 13 Apr 2026 10:10:56 +0800
Subject: [PATCH] 新增标签页样式chrome风格
---
ruoyi-ui/src/utils/index.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/utils/index.js b/ruoyi-ui/src/utils/index.js
index 5799c05..cac28dc 100644
--- a/ruoyi-ui/src/utils/index.js
+++ b/ruoyi-ui/src/utils/index.js
@@ -4,7 +4,7 @@
* 表格时间格式化
*/
export function formatDate(cellValue) {
- if (cellValue == null || cellValue == "") return "";
+ if (cellValue == null || cellValue == "") return ""
var date = new Date(cellValue)
var year = date.getFullYear()
var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
--
Gitblit v1.9.3