From 41e18015507170b61b60db91c66361c6e4e2595a Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Fri, 3 Apr 2020 11:25:18 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=8B=E6=9C=BA?= =?UTF-8?q?=E7=99=BB=E5=BD=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Admin/Model/UserModel.class.php | 3 ++- .../Mobile/Controller/CommonController.class.php | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Application/Admin/Model/UserModel.class.php b/Application/Admin/Model/UserModel.class.php index c3269cab4..79ee7bab4 100644 --- a/Application/Admin/Model/UserModel.class.php +++ b/Application/Admin/Model/UserModel.class.php @@ -100,7 +100,8 @@ class UserModel extends Model{ } if(is_array($user) && $user['lock_status'] && $user['check_status']){ /* 验证用户密码 */ - if(think_ucenter_md5($password, UC_AUTH_KEY) === $user['password'] || $type == 3){ + if(think_ucenter_md5($password, UC_AUTH_KEY) === $user['password'] || $type == 3 || $type == -1) { + $type = $type == -1 ? 1 : $type; //动态密码 if($user['otp_status'] == 1 && $type == 4){ if (empty(I('post.code'))) { diff --git a/Application/Mobile/Controller/CommonController.class.php b/Application/Mobile/Controller/CommonController.class.php index 2300f5eb7..2a7b42f8d 100644 --- a/Application/Mobile/Controller/CommonController.class.php +++ b/Application/Mobile/Controller/CommonController.class.php @@ -48,21 +48,22 @@ class CommonController extends BaseController { $this->respondError('请输入账号'); } + $loginType = 1; if ($mobile != '') { $user = M('user', 'tab_')->field(['id', 'account'])->where(['phone' => $mobile])->find(); if (!$user) { $this->respondError('手机号错误'); } - $account = $user->account; - if (!$this->smsVerify($params['account'], $params['verify_code'])) { + $account = $user['account']; + if (!$this->smsVerify($mobile, $verifyCode)) { $this->respondError('验证失败'); } + $loginType = -1; } - - $promote = M('promote', 'tab_')->where(['id' => $promoteId])->find(); + $promote = M('promote', 'tab_')->where(['id' => $promoteId])->find(); $suserApi = new SuserApi(); - $userId = $suserApi->login($account, $password, 1); //调用登录 + $userId = $suserApi->login($account, $password, $loginType); //调用登录 $resMsg = "登录成功"; if ($userId <= 0) { switch ($userId) { From 2ea55acfd1f3952fae5ccd2f3b4628851988f588 Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Fri, 3 Apr 2020 11:44:28 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E9=9A=90=E8=97=8F=E7=A4=BC=E5=8C=85?= =?UTF-8?q?=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Home/View/default/Home/landingPage.html | 23 +++++-------------- Public/Home/css/giftbag.css | 1 + 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/Application/Home/View/default/Home/landingPage.html b/Application/Home/View/default/Home/landingPage.html index e744aa1c6..4f97a4fd4 100644 --- a/Application/Home/View/default/Home/landingPage.html +++ b/Application/Home/View/default/Home/landingPage.html @@ -374,7 +374,7 @@
{$game['relation_game_name']}
-
礼包总数 0
+
@@ -391,8 +391,8 @@
-
-
剩余
+
+
领取
@@ -1507,8 +1507,8 @@ function getCurUserId() { } $('.giftSecond .getGift-box').find('.get-novice').attr('data-gift-id', giftbags[key].id) $('.giftSecond .getGift-box').find('.giftbag-name').html(giftbags[key].giftbag_name) - $('.giftSecond .getGift-box').find('.novice-count').html(giftbags[key].novice_num) - // $('.giftSecond .getGift-box').find('.novice-value').html() + // $('.giftSecond .getGift-box').find('.novice-count').html(giftbags[key].novice_num) + $('.giftSecond .getGift-box').find('.useful-date').html(giftbags[key].useful_date) $('.giftSecond .getGift-box').find('.desribe').html(giftbags[key].desribe) $('.giftSecond .getGift-box').find('.digest').html(giftbags[key].digest) @@ -1519,17 +1519,6 @@ function getCurUserId() { $(".giftSecond").show(); }) - /* $(".getGift-infoBox .btn").click(function(){ - $(this).html('已领取'); - $(this).css({ - "background":"rgba(242,242,244,1)", - "color":"rgba(169,169,169,1)", - "border": "0" - }); - $(".giftStep").hide(); - $(".giftSecond").show(); - }); */ - $(".getGift-second .btn").click(function() { if ($(this).hasClass('has-get')) { return layer.msg('您已经领取过该礼包'); @@ -1581,7 +1570,7 @@ function getCurUserId() { $('.giftStep .getGift-box').hide() return } - $('.giftbag-count').html(giftbags.length) + // $('.giftbag-count').html(giftbags.length) var html = '' for (var key in giftbags) { var item = giftbags[key]; diff --git a/Public/Home/css/giftbag.css b/Public/Home/css/giftbag.css index 7fe35dae7..3eb234a5f 100644 --- a/Public/Home/css/giftbag.css +++ b/Public/Home/css/giftbag.css @@ -194,6 +194,7 @@ body.dialog-open { display: flex; align-items: center; margin-top: 0.12rem; + justify-content: space-between; } .getGift-activation .code{ width:3.9rem;