Browse Source

修改邮箱绑定功能

aaa 8 years ago
parent
commit
c8d0edbd2f
1 changed files with 10 additions and 6 deletions
  1. 10 6
      src/main/webapp/js/account-set.js

+ 10 - 6
src/main/webapp/js/account-set.js

@ -193,14 +193,16 @@ $(function(){
193 193
	 var mailCode = GetQueryString('sc');
194 194
	//获取邮箱验证码传值注册
195 195
	if(mailCode!=''){
196
		$(".account-set a").eq(2).addClass("bgcolor").siblings().removeClass("bgcolor");
197
		$(".contentbox .content-set").eq(2).show().siblings().hide();
196 198
	    $.ajax("/ajax/bindMail/"+mailCode,{
197
				type:"post",
199
				type:"get",
198 200
				async: true,
199 201
				success:function(data){ 
200
				   console.log(data);
202
					 $.MsgBox.Alert('消息','邮箱绑定成功')
201 203
				},
202 204
				error:function(){
203
				   $.MsgBox.Alert('消息','邮箱注册失败')
205
				   $.MsgBox.Alert('消息','邮箱绑定失败')
204 206
				},
205 207
				data:{},			
206 208
			 	dataType: 'json'}
@ -210,20 +212,22 @@ $(function(){
210 212
	//点击邮箱激活
211 213
	function bindEmail(){
212 214
		valEmail();
215
		var email = $("#email").val();
213 216
		if(emailPass == true){
214 217
			$.ajax("/ajax/reqBindMail",{
215 218
					type:"GET",
216 219
					async: false,
217 220
					success:function(data){ 
218
						console.log(data);
221
						//console.log(data);
219 222
						if(data.success){
220 223
							if(data.data == true){
221
								alert("请检查邮件,设置成功后请重新登录!");
224
							//	$.MsgBox.Alert("消息","请检查邮件,设置成功后请重新登录!");
225
								$.cookie('userEmail',email); 
222 226
								var mailVal =$('.act-color').attr("href");  
223 227
								location.href=mailVal;
224 228
							}else{
225 229
								/*alert("邮箱设置失败");*/
226
								$.MsgBox.Alert("消息","设置错误!");
230
								$.MsgBox.Alert("消息","邮箱已经绑定!");
227 231
							}
228 232
						}else{
229 233
							$.MsgBox.Alert("消息","系统异常!");