Authored by biao

update for bind mobile page. code review by LZF

@@ -39,7 +39,7 @@ function startBind(password) { @@ -39,7 +39,7 @@ function startBind(password) {
39 location.href = res.data.refer; 39 location.href = res.data.refer;
40 }, 2000); 40 }, 2000);
41 } else { 41 } else {
42 - tip.show(res.message); 42 + tip.show(res.message);
43 } 43 }
44 }, 44 },
45 error: function(err) { 45 error: function(err) {
@@ -70,6 +70,6 @@ $btnSure.on('touchstart', function() { @@ -70,6 +70,6 @@ $btnSure.on('touchstart', function() {
70 if (api.pwdValidate(pwd) === false) { 70 if (api.pwdValidate(pwd) === false) {
71 showErrTip('密码6-20位,请重新输入'); 71 showErrTip('密码6-20位,请重新输入');
72 } else { 72 } else {
73 - startBind(pwd); 73 + startBind(pwd);
74 } 74 }
75 }); 75 });
@@ -43,7 +43,7 @@ module.exports = function(useInRegister, useForBind) { @@ -43,7 +43,7 @@ module.exports = function(useInRegister, useForBind) {
43 location.href = res.data.refer; 43 location.href = res.data.refer;
44 }, 2000); 44 }, 2000);
45 } else { 45 } else {
46 - tip.show(res.message); 46 + tip.show(res.message);
47 } 47 }
48 }, 48 },
49 error: function(err) { 49 error: function(err) {
@@ -117,21 +117,23 @@ module.exports = function(useInRegister, useForBind) { @@ -117,21 +117,23 @@ module.exports = function(useInRegister, useForBind) {
117 token: $('#token').val() 117 token: $('#token').val()
118 }, 118 },
119 success: function(data) { 119 success: function(data) {
120 - if (data.code === 200) {  
121 - if (useForBind) {  
122 - if (isReg) {  
123 - startBind();  
124 - } else {  
125 - location.href = '/passport/bind/password?phoneNum=' + phoneNum + '&areaCode=' + areaCode + '&openId=' + openId + '&sourceType=' + sourceType + '&nickname=' + nickname;  
126 - }  
127 - } else {  
128 - location.href = data.data; 120 + if (data.code === 200) {
  121 + if (useForBind) {
  122 + if (isReg) {
  123 + startBind();
  124 + } else {
  125 + location.href = '/passport/bind/password?phoneNum=' +
  126 + phoneNum + '&areaCode=' + areaCode + '&openId=' +
  127 + openId + '&sourceType=' + sourceType + '&nickname=' + nickname;
129 } 128 }
130 } else { 129 } else {
131 -  
132 - //验证码不正确,显示提示  
133 - showErrTip(data.message); 130 + location.href = data.data;
134 } 131 }
  132 + } else {
  133 +
  134 + //验证码不正确,显示提示
  135 + showErrTip(data.message);
  136 + }
135 137
136 } 138 }
137 }); 139 });