1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- var logintype=1;
- $('.type1,.type2').on('click', function() {
- var _this = $(this);
- _this.addClass('active').siblings().removeClass('active');
- if (_this.hasClass('type1')) {
- $('.con1').show().siblings('.con2').hide();
- logintype=1;
- } else {
- $('.con2').show().siblings('.con1').hide();
- logintype=2;
- }
- });
- $('.wechat').on('click', function() {
- // $('.loginwechat').show().siblings().hide()
- layer.msg("微信登录功能正在开发中,敬请期待!")
- });
- $('.ding').on('click', function() {
- // $('.loginding').show().siblings().hide()
- var url = ctx + "auth/dingTalk";
- window.location.href = url;
- });
- $('.i6').on('click', function() {
- $('.login1').show().siblings().hide()
- })
- var sending = false;
- $('.send.active').on('click', function() {
- if (!sending) {
- var phone = $("input[name='phone']").val();
- $.ajax({
- type: "get",
- url: ctx + "sendSms",
- data: {
- "phone": phone
- },
- success: function(r) {
- if (r.code == 0) {
- $.modal.msg(r.msg);
- sending = true;
- var _this = $(this);
- var t = 60;
- _this.removeClass('active').html(t + 's');
- var interval = setInterval(function() {
- t--;
- _this.html(t + 's');
- if (t == 0) {
- clearInterval(interval);
- _this.addClass('active').html('获取验证码');
- sending = false;
- }
- }, 1000);
- } else {
- $.modal.msg(r.msg);
- }
- }
- });
- }
- });
|