liting2017 6 years ago
parent
commit
1d9e86ea02
3 changed files with 13 additions and 1 deletions
  1. 8 0
      src/js/register.js
  2. 0 1
      src/js/video.js
  3. 5 0
      webpack/entry.config.js

+ 8 - 0
src/js/register.js

@@ -44,6 +44,7 @@ $(function () {
 
     //手机号码
     let oldPhoto='';
+    var phopoVal=[];
     $('#photo').attr('disabled', true);
     function photo1() {
         var pho_pattern = /^1[2|3|4|5|6|7|8|9][0-9]{9}$/;
@@ -165,6 +166,10 @@ $(function () {
                 $('.Tips').addClass('active');
                 return ;
             }
+            if(phopoVal[0]!==usePhoto){
+                tipFun.call($('#usePhoto'),true,'当前手机号与获得验证码的手机号不一致.')
+                return ;
+            }
         if($('.Tips.active').length){
             return;
         } else {
@@ -209,9 +214,12 @@ $(function () {
         })
     }
     var tt = 30;
+   
     $('#photo').click(function () {
+        phopoVal=[];
         var ophoto = $('#usePhoto').val().trim();
         if (ophoto) {
+            phopoVal.push(ophoto);
             $.ajax({
                 type: "GET",
                 url: globalConfig.context + "/open/getMCode",

+ 0 - 1
src/js/video.js

@@ -128,7 +128,6 @@ $(function () {
     }
     //点击跳转事件
     function jumpFun() {
-        videoHtml = '';
         $(".contImg ul li").on("click", function () {
             let loginTxt = $('.head_login')[0];
             if (loginTxt && ($(loginTxt).text()) == '登录') {

+ 5 - 0
webpack/entry.config.js

@@ -48,6 +48,7 @@ module.exports = {
         'newMenu/invRegister': './src/js/newMenu/loading/invRegister.js',
         'newMenu/video': './src/js/video.js',
         'newMenu/videoDetail': './src/js/videoDetail.js',
+        'facilitator': './src/js/facilitator/facilitator.js',
     },
     watch: {
         'index': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
@@ -232,5 +233,9 @@ module.exports = {
             'webpack/hot/only-dev-server',
             './src/js/videoDetail.js'
         ],
+        'facilitator': ['webpack-dev-server/client?http://192.168.0.188', // WebpackDevServer host and port
+            'webpack/hot/only-dev-server',
+            './src/js/facilitator/facilitator.js'
+        ],
     }
 };