From 9ab5ae470e624f4dd557062cbee69b08e774d011 Mon Sep 17 00:00:00 2001 From: wyw <571921741@qq.com> Date: Fri, 17 Jul 2026 10:08:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=B7=E5=81=87=E7=AD=BE=E5=88=B0=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CustomPages/SE/SE018EditPage.js | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/components/CustomPages/SE/SE018EditPage.js b/src/components/CustomPages/SE/SE018EditPage.js index c477fff..787c380 100644 --- a/src/components/CustomPages/SE/SE018EditPage.js +++ b/src/components/CustomPages/SE/SE018EditPage.js @@ -147,21 +147,15 @@ class SE018EditPage extends React.Component { }) } onSignIn = () => { - var ud = null - if (!this.state.data || (this.state.data.STATUS !== 1) || !this.state.data.Nav_Users) { - if (this.state.AllUsersRecord) { - var checkMore = this.state.AllUsersRecord.find(e => e.USER_ID == this.props.login.user.ID) - if (!checkMore.IS_RESEND) { - return; - } else { - ud = checkMore - } - } else { + var ud = this.state.data.Nav_Users.find(it => it.USER_ID === this.props.login.user.ID) + if ((ud == null || ud == undefined) && this.state.AllUsersRecord) { + var checkMore = this.state.AllUsersRecord.find(e => e.USER_ID == this.props.login.user.ID) + if (!checkMore.IS_RESEND) { return; + } else { + ud = checkMore } } - if (ud == null) - ud = this.state.data.Nav_Users.find(it => it.USER_ID === this.props.login.user.ID) if (!ud) { return; }