From fbfbe95893383dedb58631522c339f0024f25650 Mon Sep 17 00:00:00 2001 From: vilson <545522390@qq.com> Date: Mon, 7 Oct 2019 17:15:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=92=89=E9=92=89=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E6=97=B6=E9=87=8D=E7=BD=AE=E6=89=8B=E6=9C=BA=E6=88=96?= =?UTF-8?q?=E9=82=AE=E7=AE=B1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: vilson <545522390@qq.com> --- application/common/Model/Member.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/application/common/Model/Member.php b/application/common/Model/Member.php index eae77a1..b11fa56 100644 --- a/application/common/Model/Member.php +++ b/application/common/Model/Member.php @@ -174,6 +174,12 @@ class Member extends CommonModel } else { //已登录且未绑定,则绑定 if (!$currentMember['dingtalk_unionid'] || !$currentMember['dingtalk_userid']) { + if ($currentMember['mobile']) { + unset($memberData['mobile']); + } + if ($currentMember['email']) { + unset($memberData['email']); + } self::update($memberData, $where); $member = self::where($where)->find(); }