From 6f1b2cf3dc89059104ca0eedebf5f3ec4d1147f0 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 26 十一月 2025 11:08:17 +0800
Subject: [PATCH] 打印
---
src/utils/stringUtil.ts | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/utils/stringUtil.ts b/src/utils/stringUtil.ts
index 3e57ef1..ab955b6 100644
--- a/src/utils/stringUtil.ts
+++ b/src/utils/stringUtil.ts
@@ -1,6 +1,6 @@
export function isStringEmpty(value: string | null | undefined): boolean {
- return !value || value.trim() === '';
+ return value == null || value.trim() === '';
}
export function genderFormat(value: number): string {
--
Gitblit v1.9.3