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);