Ver código fonte

课程申请方案弹窗

tanxue 3 anos atrás
pai
commit
779de8abf4

+ 6 - 0
assets/scss/cus-client/cus-client-common.scss

@@ -651,4 +651,10 @@ h1,h2,h3,h4,h5,h6,p{font-weight:normal;margin: 0;}
 // 小于769的隐藏
   @media screen and (max-width: 769px) {
     .mta-hidden-xs{display: none!important;}
+    // 提示框
+    .phone-message-box{
+        width: 88%;min-width: unset;top: 35% !important;display: block;text-align: center;padding: 36px 0;
+      .el-message__icon{margin-bottom: 20px;}
+      .el-message__icon:before{font-size: 50px;}
+    }
   }

+ 36 - 0
assets/scss/cus-client/cus-client-page.scss

@@ -1183,5 +1183,41 @@
   .system-maintain-dialog{
     .el-dialog{width: 540px;height: 380px;background-image:url("~static/images/client/tiyanCenter/ty-dialog-bj.jpg");}
   }
+
+  /********  describe: 课程开发解决方案  author: TX  date:2021-08-06  ********/
+  .course-develop-page{
+    // 标题
+    .course-develop-title{background-color: rgb(39, 68, 98);padding: 50px 0 100px;font-weight: 700;font-size: 24px;color: rgb(255, 255, 255);text-align: center;}
+
+    // form
+    .course-develop-form{width: 90%;min-height: 380px;background: #fff;margin: -50px auto 0;padding: 40px 24px;box-sizing: border-box;border-radius: 5px;box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 4px -1px;}
+
+    // 滑块px
+    .nc-container{
+      overflow: hidden;height: 52px;
+      .nc_wrapper{width:100%!important;margin-bottom: 22px;border-radius: 5px;overflow: hidden;}
+      .nc_scale{
+        height: 30px;
+        .scale_text{overflow: hidden;line-height: 30px;}
+        span{width:40px;height: 30px;line-height: 30px;border-radius: 5px;border: 1px solid rgb(187, 187, 187);box-sizing: border-box;overflow: hidden}
+      }
+      .btn_ok{margin-left: -1px;}
+    }
+
+    // 输入框-验证码
+    .course-develop-input-code{width: calc(100% - 122px);}
+    .course-develop-code-btn.el-button{width:110px;box-sizing:border-box;padding: 12px;margin-left: 8px;background-color: rgb(0, 102, 204);color: #fff;}
+
+    // 表单按钮
+    .form-blue-btn,.form-border-btn{
+       width: 100%;height: 50px;line-height: 50px;color: rgb(255, 255, 255);border-radius: 5px;@include setFontStyle(-4);text-align: center;border: 1px solid transparent;
+    }
+
+    .form-blue-btn{background-color: rgb(0, 102, 204);border-color:rgb(0, 102, 204);}
+    .form-border-btn{display:block;border-color:rgb(0, 102, 204);color:rgb(0, 102, 204);margin-top: 20px; }
+
+    // 咨询电话
+    .course-develop-tel{display:block;text-align: center;margin: 60px 0;font-weight: 700;@include setFontStyle(-2);color: #101010;}
+  }
 }
 

+ 257 - 0
pages/CourseDevelopPhone.vue

@@ -0,0 +1,257 @@
+<template>
+  <!-- 课程申请方案弹窗 仅手机使用-->
+  <div class="course-develop-page">
+    <div>
+      <p class="course-develop-title">免费获得课程开发解决方案</p>
+      <el-form :model="telChangeDate" status-icon ref="ruleTelForm" class="course-develop-form">
+        <el-form-item  prop="tel">
+          <el-input v-model="telChangeDate.tel" placeholder="请输入手机号" class="dialog-input-tel"></el-input>
+        </el-form-item>
+        <div id="your-dom-id" class="nc-container"></div>
+        <el-form-item prop="verification">
+          <div class="verification">
+            <el-input v-model="telChangeDate.verification" placeholder="请输入验证码" class="course-develop-input-code"></el-input>
+            <el-button  @click="checkVerification" :disabled="btnTextDisabled" class="course-develop-code-btn">{{btnText}}</el-button>
+          </div>
+        </el-form-item>
+        <div class="form-blue-btn" @click="dialogSave">申请方案</div>
+        <a class="form-border-btn" href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">在线客服</a>
+      </el-form>
+
+      <a href="tel:400-052-2130" class="course-develop-tel">咨询电话:400-052-2130</a>
+    </div>
+
+  </div>
+</template>
+
+<script>
+  export default {
+    name:     'CourseDevelopPhone',
+    layout:   'templateB',
+    data() {
+      return {
+        telChangeDate:   {},
+        pageName:'',// 跳进来的页面名称
+        btnTextDisabled: false,
+        btnText:         '获取验证码',
+        countdown:       60, // 60秒倒计时
+        sliderData:      {},
+        appKey:          'FFFF0N00000000007EC0',
+      };
+    },
+    head(){
+    },
+    computed: {},
+    methods:  {
+      // 申请方案按钮
+      dialogSave(){
+        this.$refs.ruleTelForm.validate((valid) => {
+          if (valid) {
+            // 请求后台
+            const options = {
+              phone:  this.telChangeDate.tel,
+              code: this.telChangeDate.verification,
+            };
+
+            this.$axios.$post('/develop/add',options).then(res=>{
+              if (res.code === 0 && res.data) {
+                this.$message({customClass:'phone-message-box',type: 'success',message: '申请成功'});
+                // 根据跳进来的页面跳出去
+                switch (this.pageName) {
+                  case 'shouye':
+                    this.$router.push({ name: 'index' });
+                    break;
+                  case 'course':
+                    this.$router.push({ name: 'courseware' });
+                    break;
+                  case 'resources':
+                    this.$router.push({ name: 'resources' });
+                    break;
+                  default:
+                    this.$router.push({ name: 'index' });
+                }
+              }else{
+                this.$message({customClass:'phone-message-box',type: 'error',message: res.msg});
+              }
+            });
+          }
+        });
+
+      },
+
+      // 验证码
+      checkVerification() {
+        if(this.telChangeDate.tel===''||this.telChangeDate.tel===undefined){
+          this.$message({customClass:'phone-message-box',type: 'error',message: '请填写手机号'});
+          return;
+        }else if(this.sliderData.appkey === undefined){
+          this.$message({customClass:'phone-message-box',type: 'error',message: '请先通过滑块校验'});
+          return;
+        }
+        this.$axios.$post(`/develop/exists`,{  phone: this.telChangeDate.tel}).then(res=>{
+
+          if (res.code === 0 && res.data) {
+
+            let req = {
+              'appkey':    this.sliderData.appkey,
+              'phone':     this.telChangeDate.tel,
+              'scene':     this.sliderData.scene,
+              'sessionid': this.sliderData.csessionid,
+              'sig':       this.sliderData.sig,
+              'token':     this.sliderData.token,
+              'type':      0,
+            }
+            this.$axios.$post('/sendCode',req).then(res=>{
+              if (res.code === 0 && res.data) {
+                this.setTime();
+              }else{
+                this.$message({customClass:'phone-message-box',type: 'error',message: res.msg});
+              }
+            })
+          } else {
+            this.$message.error('手机号已存在');
+            return false;
+          }
+
+        })
+      },
+
+      /**
+       * 串联加载指定的脚本
+       * 串联加载[异步]逐个加载,每个加载完成后加载下一个
+       * 全部加载完成后执行回调
+       * @param array|string 指定的脚本们
+       * @param function 成功后回调的函数
+       * @return array 所有生成的脚本元素对象数组
+       * 异步加载js后运行回调函数callback / scripts 为数组或字符串
+       */
+      seriesLoadScripts(scripts, callback) {
+        if (typeof (scripts) != 'object') {
+          var scripts = [scripts];
+        }
+        var HEAD = document.getElementsByTagName('head').item(0) || document.documentElement;
+        var s = new Array(), last = scripts.length - 1, recursiveLoad = function (i) { //递归
+          s[i] = document.createElement('script');
+          s[i].setAttribute('type', 'text/javascript');
+          s[i].onload = s[i].onreadystatechange = function () { //Attach handlers for all browsers
+            if (!/*@cc_on!@*/0 || this.readyState == 'loaded' || this.readyState == 'complete') {
+              this.onload = this.onreadystatechange = null;
+              this.parentNode.removeChild(this);
+              if (i != last) {
+                recursiveLoad(i + 1);
+              } else if (typeof (callback) == 'function') {
+                callback();
+              }
+            }
+          };
+          s[i].setAttribute('src', scripts[i]);
+          HEAD.appendChild(s[i]);
+        };
+        recursiveLoad(0);
+      },
+
+      // 倒计时60秒
+      setTime() {
+        if (this.countdown === 0) {
+          this.btnTextDisabled = false;
+          this.btnText = '免费获取验证码';
+          this.countdown = 60;
+        } else {
+          this.btnTextDisabled = true;
+          this.btnText = '重新发送(' + this.countdown + 's)';
+          this.countdown--;
+          setTimeout(() => {
+            this.setTime();
+          }, 1000);
+        }
+      },
+      // 滑块
+      sliderFun() {
+        const nc_token = [this.appKey, (new Date()).getTime(), Math.random()].join(':');
+        console.log(nc_token);
+        const NC_Opt = {
+          //声明滑动验证需要渲染的目标元素ID。
+          renderTo:    '#your-dom-id',
+          //应用类型标识。它和使用场景标识(scene字段)一起决定了滑动验证的业务场景与后端对应使用的策略模型。您可以在人机验证控制台的配置管理页签找到对应的appkey字段值,请务必正确填写。
+          appkey:      this.appKey,
+          //使用场景标识。它和应用类型标识(appkey字段)一起决定了滑动验证的业务场景与后端对应使用的策略模型。您可以在人机验证控制台的配置管理页签找到对应的scene值,请务必正确填写。
+          scene:       'nc_message',
+          //滑动验证码的主键,请勿将该字段定义为固定值。确保每个用户每次打开页面时,其token值都是不同的。系统默认的格式为:”您的appkey”+”时间戳”+”随机数”。
+          token:       nc_token,
+          //滑动条的宽度。
+          customWidth: 300,
+          //业务键字段,可为空。为便于线上问题的排查,建议您按照线上问题定位文档中推荐的方法配置该字段值。
+          trans:       { 'key1': 'code0' },
+          //通过Dom的ID属性自动填写trans业务键,可为空。建议您按照线上问题定位文档中推荐的方法配置该字段值。
+          elementID:   ['usernameID'],
+          //是否自定义配置底层采集组件。如无特殊场景,请使用默认值(0),即不自定义配置底层采集组件。
+          is_Opt:      0,
+          //语言。PC端Web页面场景默认支持18国语言,详细配置方法请参见自定义文案与多语言文档。
+          language:    'cn',
+          //是否启用。一般情况,保持默认值(true)即可。
+          isEnabled:   true,
+          //内部网络请求的超时时间。一般情况建议保持默认值(3000ms)。
+          timeout:     3000,
+          //允许服务器超时重复次数,默认5次。超过重复次数后将触发报错。
+          times:       5,
+          //用于自定义滑动验证各项请求的接口地址。一般情况,请勿配置该参数。
+          apimap:      {
+            // 'analyze': '//a.com/nocaptcha/analyze.jsonp',
+            // 'get_captcha': '//b.com/get_captcha/ver3',
+            // 'get_captcha': '//pin3.aliyun.com/get_captcha/ver3'
+            // 'get_img': '//c.com/get_img',
+            // 'checkcode': '//d.com/captcha/checkcode.jsonp',
+            // 'umid_Url': '//e.com/security/umscript/3.2.1/um.js',
+            // 'uab_Url': '//aeu.alicdn.com/js/uac/909.js',
+            // 'umid_serUrl': 'https://g.com/service/um.json'
+          },
+          //前端滑动验证通过时会触发该回调参数。您可以在该回调参数中将请求标识(token)、会话ID(sessionid)、签名串(sig)字段记录下来,随业务请求一同发送至您的服务端调用验签。
+          callback:    (data) => {
+            this.sliderData = Object.assign({}, data, {
+              appkey: NC_Opt.appkey,
+              scene:  NC_Opt.scene,
+            });
+            console.log( this.sliderData);
+          },
+        };
+        let date11 = () => {
+
+          let _date = new Date();
+          let year = _date.getFullYear().toString();
+          let month = _date.getMonth().toString();
+          let day = _date.getDate().toString();
+          let a = _date.getHours().toString();
+          let b = _date.getMinutes().toString();
+          let c = _date.getSeconds().toString();
+
+          return year + month + day + a + b + c;
+        };
+        let c = date11();
+        const scripts = [
+          `https://g.alicdn.com/sd/ncpc/nc.js?t=${c}`,
+        ];
+        this.seriesLoadScripts(scripts, function () {
+          var nc = new noCaptcha(NC_Opt);
+          nc.upLang('cn', {
+            _startTEXT:    '请按住滑块,拖动到最右边',
+            _yesTEXT:      '验证通过',
+            _error300:     '哎呀,出错了,点击<a href="javascript:__nc.reset()">刷新</a>再来一次',
+            _errorNetwork: '网络不给力,请<a href="javascript:__nc.reset()">点击刷新</a>',
+          });
+        });
+
+      },
+    },
+    created() {
+      this.pageName = this.$route.query.pageName;
+    },
+    mounted() {
+      this.sliderFun();
+    },
+    beforeDestroy() {
+    },
+  };
+</script>
+<style>
+
+</style>