dengzhiguo 6 years ago
parent
commit
7e32141d84
3 changed files with 9 additions and 9 deletions
  1. 1 1
      src/css/register.css
  2. 6 6
      src/js/register.js
  3. 2 2
      webpack.config.js

+ 1 - 1
src/css/register.css

@@ -44,7 +44,7 @@ line-height:50px;padding-left:50px;}
 margin-bottom:10px;line-height:38px;}
 .zhuce_input>select{border:none;width:200px;height:36px;color:#707070; background: transparent;
     outline: none;}
-.zhuce_input>input{border:none;color:#ccc;width: 200px;}
+.zhuce_input>input{border:none;width: 200px;}
 .log_del{margin-left:15px;}
 .yanzheng{width:255px;height:40px;position: relative;margin-bottom:10px;}
 .yanzhengma{width:165px;height:40px;border:1px solid #E5E5E5;

+ 6 - 6
src/js/register.js

@@ -96,11 +96,11 @@ $(function () {
     function blurFun(){
         $('#username').blur(function(){
             let nameRax  =  /^[a-zA-Z0-9_-]{6,32}$/;
-            if(!$(this).val().trim()){
-                $(this).val('请填写用户名').css({color:'#f00'})
-            }else if(!nameRax.test($(this).val())){
-                $(this).val('6-32位字母/数字/下划线').css({color:'#f00'})
-            }
+//          if(!$(this).val().trim()){
+//              $(this).val('请填写用户名').css({color:'#f00'})
+//          }else if(!nameRax.test($(this).val())){
+//              $(this).val('1-32位字母/数字/汉字').css({color:'#f00'})
+//          }
         })
         $('#userpassword').blur(function () {
             var pass_pattern = /^[a-zA-Z\d_]{6,12}$/;
@@ -108,7 +108,7 @@ $(function () {
             var tt = $('#userpassword2').val().trim();
             if (!pass1|| !pass_pattern.test(pass1)) {
                $(this).attr('type',"text")
-               $(this).val('请输入6-12位数字母开头密码').css({color:'#f00'});
+              // $(this).val('请输入6-12位数字母开头密码').css({color:'#f00'});
                 return;
             }else{
                 $(this).attr('type','password');   

+ 2 - 2
webpack.config.js

@@ -392,9 +392,9 @@ module.exports = (function () {
         plugins: plugins,
         devServer: {
             disableHostCheck: true,
-            host: '127.0.0.1',
+            host: '192.168.0.190',
             port: 80,
-            allowedHosts: ['192.168.0.190','192.168.0.99:8080'],
+            allowedHosts: ['127.0.0.1','192.168.0.99'],
             headers: {
                 "Access-Control-Allow-Origin": "*"
             }