Browse Source

注册修复

liting2017 6 years ago
parent
commit
2cfdcc8574

+ 1 - 1
src/css/newMenu/landingPage/Invitation.css

@@ -45,6 +45,7 @@
     color: #333;
 }
 .ruleBottom{
+    text-align: center;
     margin-top: 100px;
     margin-bottom: 100px;
 }
@@ -56,7 +57,6 @@
     text-align: center;
     font-size: 26px;
     color: #fff;
-    margin-left: 190px;
     background: #46c8fe;
 }
 .ruleBottom a:hover{

+ 1 - 1
src/js/newMenu/loading/Invitation.js

@@ -23,7 +23,7 @@ $(function(){
                     msg(data.error[0].message);
                     return;
                 }
-                let tts='http://'+window.location.host+'/user/signIn#code='+data.data;
+                let tts='http://'+window.location.host+'/user/signIn?code='+data.data;
                 /* qq分享 */  
                 
                 shareToQq('技淘网', tts, '',txts)  

+ 3 - 5
src/js/register.js

@@ -1,11 +1,9 @@
-// import '../css/bootstrap.less';
+import '../css/bootstrap.less';
 // import 'bootstrap/dist/js/bootstrap.js';
 import 'css/newMenu/public.css';
 import 'css/newMenu/header.css'
 import '../css/register.css';
 import './public.js';
-import { DH_NOT_SUITABLE_GENERATOR } from 'constants';
-
 
 $(function () {
     //查看技淘网协议
@@ -155,8 +153,8 @@ $(function () {
         })
     }
     //表单提交
-    if(window.location.hash.indexOf('code')>-1){
-       let code =  (window.location.hash).split('=');
+    if(window.location.search.indexOf('code')>-1){
+       let code =  (window.location.search).split('=');
         $('#beInviteCode').val(code[1]);
     }
     $("#form_register").submit(function (e) {