From ace5c21045e2d10cf6443ffe0919eab4abdf069b Mon Sep 17 00:00:00 2001 From: xusd <330628789@qq.com> Date: Sat, 05 Jul 2025 16:56:55 +0800 Subject: [PATCH] fix:详情页参数修正 --- src/utils/utility.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/utility.js b/src/utils/utility.js index 90e9154..5abc218 100644 --- a/src/utils/utility.js +++ b/src/utils/utility.js @@ -2,7 +2,7 @@ * @Company: hugeInfo * @Author: ldh * @Date: 2022-02-16 11:57:54 - * @LastEditTime: 2025-06-10 17:40:29 + * @LastEditTime: 2025-06-23 14:30:22 * @LastEditors: lwh * @Version: 1.0.0 * @Description: 公共模块方法 @@ -243,7 +243,7 @@ } export function myTimeFormat(value, str) { - return !!value ? moment(value).format(str) : '-'; + return !!value ? moment.parseZone(value).format(str) : '-'; } // RangePicker 查询条件时间范围的预设标签 export function shortcutsList() { -- Gitblit v1.8.0