作者 李涵
1 个管道 的构建 通过 耗费 3 秒

合并分支 'li' 到 'master'

赠送积分和角色管理



查看合并请求 !476
... ... @@ -169,4 +169,9 @@ class FriendController extends HomeBaseController
}
}
//密码管理验证码页面
public function passwordManager() {
return $this->fetch(':password_manager');
}
}
\ No newline at end of file
... ...
... ... @@ -180,7 +180,7 @@
if(t!=null){
curCount=t;
$(".nextstep").attr("disabled",true);
//$(".nextstep").attr("disabled",true);
$(".sendcode").attr("disabled",true)
var phone=localStorage.getItem("mobile");
$(".enterphone").val(phone)
... ... @@ -203,7 +203,7 @@
localStorage.setItem("mobile",tel)
//设置button效果,开始计时
$(".sendcode").attr("disabled",true);
$(".nextstep").attr("disabled",true);
//$(".nextstep").attr("disabled",true);
// $(".sendcode").unbind()
$(".sendcode").html( curCount + "秒");
$(".sendcode").css("color","#fff");
... ... @@ -215,7 +215,7 @@
if (curCount == 0) {
window.clearInterval(InterValObj);//停止计时器
$(".sendcode").removeAttr("disabled");//启用按钮
$(".nextstep").removeAttr("disabled");
//$(".nextstep").removeAttr("disabled");
$(".sendcode").html("重新发送验证码");
$(".sendcode").css("color","#fff");
localStorage.clear();
... ...
... ... @@ -72,7 +72,7 @@
<p class="record">积分赠送</p>
<P class="iconfont icon-jinru"></P>
</div>
<div class="list password">
<div class="list password" data-url="{:url('friendship/Friend/passwordManager')}">
<p class="record">积分密码管理</p>
<P class="iconfont icon-jinru"></P>
</div>
... ... @@ -92,7 +92,7 @@
window.location.href=$(this).attr('data-url');
})
$(".password").click(function(){
window.location.href=$(this).attr('data-url');
})
</script>
</html>
... ...