liting2017 6 年之前
父節點
當前提交
6cec90e8b9

+ 0 - 4
src/css/bootstrap.css

@@ -3015,10 +3015,6 @@ select[multiple].input-lg {
   -ms-touch-action: manipulation;
       touch-action: manipulation;
   cursor: pointer;
-  -webkit-user-select: none;
-     -moz-user-select: none;
-      -ms-user-select: none;
-          user-select: none;
   background-image: none;
   border: 1px solid transparent;
   border-radius: 4px;

+ 5 - 6
src/css/newMenu/public.css

@@ -530,17 +530,17 @@ header .colorRed{
 
 
 /*弹出消息提示*/
-.smg{width: 260px;height: 40px;text-align: center;transform: scale(0) rotate(360deg);
+.smg{width: 260px;height: 40px;text-align: center;transform: scale(0);
     line-height:40px;background:#17a2b8;border-radius: 10px;
     position: fixed;top: -200px; left: 50%;margin-left: -130px;color:#ffffff;
-    transition: all .5s ease-in-out;
+    transition: all .3s ease-in-out;
 }
 .smg input{width: 260px;height: 40px;border: none;background: none;text-align: center;font-size: 14px;}
 .smg.active{
-    transform: scale(1) rotate(0);
+    transform: scale(1) ;
     top: 200px;
     z-index: 9999999999;
-    transition: all .5s ease-in;
+    transition: all .3s ease-in;
 }
 
 
@@ -846,11 +846,10 @@ input:-webkit-autofill {
 .loading p{
 	position: absolute;
 	left: 50%;
-	top: 50%;
+	top: 30%;
 	width: 200px;
 	height: 40px;
 	margin-left: -100px;
-	margin-top: -20px;
 }
 
 .loading p span{

+ 5 - 8
src/css/public.css

@@ -20,10 +20,6 @@ body {
 	-webkit-font-smoothing: antialiased;
 	-moz-osx-font-smoothing: grayscale;
 	/*font-size:1.4rem;*/
-	-webkit-user-select: none;
-	-moz-user-select: none;
-	-ms-user-select: none;
-	user-select: none;
 }
 
 body,
@@ -1091,17 +1087,18 @@ header .nav_right .head_login {
 
 
 /*弹出消息提示*/
-.smg{width: 260px;height: 40px;text-align: center;transform: scale(0) rotate(360deg);
+.smg{
+	width: 260px;height: 40px;text-align: center;transform: scale(0) rotate(360deg);
     line-height:40px;background:#17a2b8;border-radius: 10px;
     position: fixed;top: -200px; left: 50%;margin-left: -130px;color:#ffffff;
-    transition: all .5s ease-in-out;
+    transition: all .1s ease-in-out;
 }
 .smg input{width: 260px;height: 40px;border: none;background: none;text-align: center;font-size: 14px;}
 .smg.active{
-    transform: scale(1) rotate(0);
+    transform: scale(1) ;
     top: 200px;
     z-index: 9999999999;
-    transition: all .5s ease-in;
+    transition: all .1s ease-in;
 }
 
 

+ 0 - 4
src/css/register.css

@@ -3,10 +3,6 @@ html{font-size:62.5%;}
 body{font:14px "simsun",Arial,Helvetica,sans-serif;width:100%;
     background-color:#fff;
     font-size:1.4rem;
-    -webkit-user-select:none;
-    -moz-user-select:none;
-    -ms-user-select:none;
-    user-select:none;
 }
 body,h1,h2,h3,h4,h6,p,ul,ol,dl,dd{margin:0;padding:0;list-style:none;}
 a{color:#000;text-decoration:none;}

+ 0 - 1
src/js/indexNew.js

@@ -24,7 +24,6 @@ import './public.js';
 	$(".indexGroom_table>div").click(function(){
 		$(this).parent().children().removeClass("indexGroom_active");
 		$(this).addClass("indexGroom_active");
-		console.log($(this).html());
 		if($(this).html()=="成果"){
 			$(".chengguo").css("display","block");
 			$(".xuqiu").css("display","none");

+ 20 - 4
src/js/public.js

@@ -54,16 +54,27 @@ $(function(){
 		if(Suser==''||Spass==''){	
 			msg('请填写用户名/密码.');
 			return false;
-		}else{			
+		}else{	
+			$('.loading').show();		
+			let txt = "登录中,请稍后...",htmls=[],i=0,
+			txtArr = txt.split('');
+			txtArr.map(item=>{
+				htmls.push(`
+					<span>${item}</span>
+				`)
+			});
+			$('.loading div p').html(htmls);
 			$.ajax({
               method: "POST",
               dataType: "json",
               url: globalConfig.context + "/signin",
               data: {
                       "username": Suser,
-                      "password": Spass,
+					  "password": Spass,
+					  'type':'0'
               },
-              success: function (rest) {				
+              success: function (rest) {
+				    $('.loading').hide();				
 					if (rest.error && rest.error.length) {					
 		                 msg(rest.error[0].message);	
 					} else {						
@@ -81,7 +92,7 @@ $(function(){
 							msg('登录成功,2秒后跳转个人中心');
 							setTimeout(()=>{
 								window.location.href = globalConfig.context + "/user/account/index.html";
-							},2000)
+							},3000)
                         }                       
 					}
 			   }
@@ -119,6 +130,9 @@ $(function(){
 	//点击登录界面的忘记密码 ,将会弹出忘记密码界面
 	$('.login_check a').click(function(e){
 		e.preventDefault();
+		$('#forget_user').val('');
+		$('#forget_phone').val('');
+		$('#photo_n').val('');
 		$('.login').fadeOut(800);
 		$('#form_register').fadeOut(800);
 		$("#forget").fadeIn(800);
@@ -180,6 +194,8 @@ $(function(){
 					$('#form_register').fadeOut(800);
 					$("#new_password").fadeIn(800);
 					$(".password_top>h4").attr("val",rest.data);
+					$('#new_pass').val();
+					$('#new_pass_again').val();
 				}
 			}
 		})

+ 1 - 1
src/js/thinkTank.js

@@ -213,7 +213,7 @@ $(function() {
 						theArr.push(`
 							<li value="${thisdata.uid}">
 								<div class="noImg">
-									${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+thisdata.personPortraitUrl+'"/>':''}
+									${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.personPortraitUrl+'"/>':''}
 								</div>
 								<div class="list_text">
 									<p class="bulr">${thisdata.username}</p>

+ 1 - 0
template/indexNew.html

@@ -16,6 +16,7 @@
 </head>
 
 <body>
+		
 	<div class="header">
 		<div class="container">
 			<div>

+ 1 - 1
template/newMenu/serviceList.html

@@ -14,7 +14,7 @@
 
 <body>
     <div class="loading">
-        <p></p>
+        <div><span class="glyphicon glyphicon-refresh"></span></div>
     </div>
     <div class="header">
         <div class="container">

+ 1 - 1
template/newMenu/services.html

@@ -10,7 +10,7 @@
     <link rel="stylesheet" href="../../src/css/newMenu/public.css">
     <link rel="stylesheet" href="../../src/css/newMenu/header.css">
     <link rel="stylesheet" href="../../src/css/newMenu/services.css">
-    <script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
+    <script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.0&services=true"></script>
 </head>
 
 <body>