From f1bf8e9c687f2bff58622a8bfdaf81c26140f7f2 Mon Sep 17 00:00:00 2001 From: "gao.zhiyuan" Date: Tue, 25 Oct 2022 13:45:05 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=97=B6=E9=97=B4=E4=B8=BA=E7=A9=BA?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/app/lib/utils/member.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/lib/utils/member.js b/api/app/lib/utils/member.js index f8be6f5..cb727e2 100644 --- a/api/app/lib/utils/member.js +++ b/api/app/lib/utils/member.js @@ -376,7 +376,7 @@ module.exports = function (app, opts) { ) .replace(/_/g, '') } - obj[nextKey] = u[k] == '1970-01-01 00:00:00.000000' ? null : u[k] + obj[nextKey] = u[k] == '1970-01-01 00:00:00.000000' || u[k] == '1970-01-01 08:00:00.000000' ? null : u[k] } pepUserIds.push(u.pepUserId) console.log("查询到的用户信息:", obj);