@@ -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/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) {
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;