applicationDialog.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <div>
  3. <!-- 申请方案弹窗 -->
  4. <el-dialog
  5. :close-on-click-modal="false"
  6. :visible.sync="show"
  7. @close="dialogClose"
  8. @opened="dialogOpened"
  9. class="application-scheme-dialog"
  10. center>
  11. <i></i>
  12. <p>免费获得课程开发解决方案</p>
  13. <el-form :model="formData" status-icon :rules="rules" ref="ruleTelForm" class="application-scheme-form">
  14. <el-form-item prop="tel">
  15. <el-input v-model="formData.tel" placeholder="请输入手机号" class="dialog-input-tel"></el-input>
  16. </el-form-item>
  17. <div id="your-dom-id" class="nc-container"></div>
  18. <el-form-item prop="verification">
  19. <div class="verification">
  20. <el-input v-model="formData.verification" placeholder="请输入验证码" class="dialog-input-code"></el-input>
  21. <el-button @click="checkVerification" :disabled="btnTextDisabled" class="dialog-code-btn">{{ btnText }}
  22. </el-button>
  23. </div>
  24. </el-form-item>
  25. </el-form>
  26. <div class="application-scheme-btn" @click="applyFor">申请方案</div>
  27. <!-- <span>免费热线:400-052-2130</span>-->
  28. <!-- <a-->
  29. <!-- href="https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd"-->
  30. <!-- target="_blank">在线客服</a>-->
  31. </el-dialog>
  32. <el-dialog
  33. :close-on-click-modal="false"
  34. :visible.sync="apply_success_dl"
  35. @closed="dialogResultClose"
  36. class="application-scheme-result-dialog"
  37. center
  38. >
  39. <img src="#" class="success_icon">
  40. <h3>恭喜您申请成功</h3>
  41. <p>请保持手机畅通,时候客服会和您联系</p>
  42. <el-button @click="confirmBtn">确定</el-button>
  43. </el-dialog>
  44. </div>
  45. </template>
  46. <script>
  47. export default {
  48. name: "application",
  49. props: {
  50. visible: {
  51. type: Boolean,
  52. require: true
  53. }
  54. },
  55. data() {
  56. return {
  57. show: false,
  58. formData: {
  59. tel: '',
  60. verification: '',
  61. },
  62. rules: {
  63. tel: [
  64. {trigger: 'blur', required: true, message: '请输入手机号'},
  65. ],
  66. verification: [
  67. {trigger: 'blur', required: true, message: '请输入验证码'},
  68. ],
  69. },
  70. btnTextDisabled: false,
  71. btnText: '获取验证码',
  72. countdown: 60, // 60秒倒计时
  73. sliderData: {},
  74. appKey: 'FFFF0N00000000007EC0',
  75. apply_success: false,
  76. apply_success_dl: false,
  77. }
  78. },
  79. watch: {
  80. visible: {
  81. handler(newVal) {
  82. this.show = newVal;
  83. },
  84. immediate: true
  85. }
  86. },
  87. methods: {
  88. /**
  89. * 串联加载指定的脚本
  90. * 串联加载[异步]逐个加载,每个加载完成后加载下一个
  91. * 全部加载完成后执行回调
  92. * @param array|string 指定的脚本们
  93. * @param function 成功后回调的函数
  94. * @return array 所有生成的脚本元素对象数组
  95. * 异步加载js后运行回调函数callback / scripts 为数组或字符串
  96. */
  97. seriesLoadScripts(scripts, callback) {
  98. if (typeof (scripts) != 'object') {
  99. var scripts = [scripts];
  100. }
  101. var HEAD = document.getElementsByTagName('head').item(0) || document.documentElement;
  102. var s = new Array(), last = scripts.length - 1, recursiveLoad = function (i) { //递归
  103. s[i] = document.createElement('script');
  104. s[i].setAttribute('type', 'text/javascript');
  105. s[i].onload = s[i].onreadystatechange = function () { //Attach handlers for all browsers
  106. if (!/*@cc_on!@*/0 || this.readyState == 'loaded' || this.readyState == 'complete') {
  107. this.onload = this.onreadystatechange = null;
  108. this.parentNode.removeChild(this);
  109. if (i != last) {
  110. recursiveLoad(i + 1);
  111. } else if (typeof (callback) == 'function') {
  112. callback();
  113. }
  114. }
  115. };
  116. s[i].setAttribute('src', scripts[i]);
  117. HEAD.appendChild(s[i]);
  118. };
  119. recursiveLoad(0);
  120. },
  121. dialogResultClose() {
  122. this.apply_success = false;
  123. this.apply_success_dl = false;
  124. this.$emit('apply_success', true);
  125. },
  126. dialogOpened() {
  127. // 初始化拖拽条
  128. this.initSlide();
  129. },
  130. dialogClose() {
  131. this.show = false;
  132. this.countdown = -1;
  133. this.$refs.ruleTelForm.resetFields();
  134. __nc.reset();
  135. if (this.apply_success === true) {
  136. this.apply_success_dl = true;
  137. }
  138. this.$emit('update:visible', false);
  139. },
  140. // 倒计时60秒
  141. setTime() {
  142. if (this.countdown === 0) {
  143. this.btnTextDisabled = false;
  144. this.btnText = '获取验证码';
  145. this.countdown = 60;
  146. } else if (this.countdown === -1) {
  147. this.btnTextDisabled = false;
  148. this.btnText = '获取验证码';
  149. this.countdown = 60;
  150. } else {
  151. this.btnTextDisabled = true;
  152. this.btnText = '重新发送(' + this.countdown + 's)';
  153. this.countdown--;
  154. setTimeout(() => {
  155. this.setTime();
  156. }, 1000);
  157. }
  158. },
  159. checkVerification() {
  160. if (this.sliderData.appkey === undefined) {
  161. this.$message.error('请先通过滑块校验');
  162. return;
  163. }
  164. const {tel: phone} = this.telChangeDate;
  165. this.$axios.$post(`/develop/exists`, {phone}).then(res => {
  166. if (res.code === 0 && res.data) {
  167. const {appkey, scene, csessionid: sessionid, sig, token} = this.sliderData;
  168. let req = {appkey, scene, sig, token, sessionid, phone, type: 0}
  169. this.$axios.$post('/sendCode', req).then(res => {
  170. if (res.code === 0 && res.data) {
  171. this.setTime();
  172. } else {
  173. this.$message.error(res.msg || '手机号已存在');
  174. }
  175. })
  176. } else {
  177. this.$message.error(res.msg || '手机号已存在');
  178. }
  179. })
  180. },
  181. applyFor() {
  182. this.$refs.ruleTelForm.validate((valid) => {
  183. if (valid) {
  184. const {tel: phone, verification: code} = this.telChangeDate;
  185. // 请求后台
  186. const options = {phone, code};
  187. this.$axios.$post('/develop/add', options).then(res => {
  188. if (res.code === 0 && res.data) {
  189. this.show = false;
  190. this.apply_success = true;
  191. } else {
  192. this.$message.error('申请失败');
  193. }
  194. });
  195. }
  196. });
  197. },
  198. confirmBtn() {
  199. this.$emit('success_confirm', true);
  200. this.apply_success_dl = false;
  201. },
  202. initSlide() {
  203. const nc_token = [this.appKey, (new Date()).getTime(), Math.random()].join(':');
  204. const NC_Opt = {
  205. //声明滑动验证需要渲染的目标元素ID。
  206. renderTo: '#your-dom-id',
  207. //应用类型标识。它和使用场景标识(scene字段)一起决定了滑动验证的业务场景与后端对应使用的策略模型。您可以在人机验证控制台的配置管理页签找到对应的appkey字段值,请务必正确填写。
  208. appkey: this.appKey,
  209. //使用场景标识。它和应用类型标识(appkey字段)一起决定了滑动验证的业务场景与后端对应使用的策略模型。您可以在人机验证控制台的配置管理页签找到对应的scene值,请务必正确填写。
  210. scene: 'nc_message',
  211. //滑动验证码的主键,请勿将该字段定义为固定值。确保每个用户每次打开页面时,其token值都是不同的。系统默认的格式为:”您的appkey”+”时间戳”+”随机数”。
  212. token: nc_token,
  213. //滑动条的宽度。
  214. customWidth: 300,
  215. //业务键字段,可为空。为便于线上问题的排查,建议您按照线上问题定位文档中推荐的方法配置该字段值。
  216. trans: {'key1': 'code0'},
  217. //通过Dom的ID属性自动填写trans业务键,可为空。建议您按照线上问题定位文档中推荐的方法配置该字段值。
  218. elementID: ['usernameID'],
  219. //是否自定义配置底层采集组件。如无特殊场景,请使用默认值(0),即不自定义配置底层采集组件。
  220. is_Opt: 0,
  221. //语言。PC端Web页面场景默认支持18国语言,详细配置方法请参见自定义文案与多语言文档。
  222. language: 'cn',
  223. //是否启用。一般情况,保持默认值(true)即可。
  224. isEnabled: true,
  225. //内部网络请求的超时时间。一般情况建议保持默认值(3000ms)。
  226. timeout: 3000,
  227. //允许服务器超时重复次数,默认5次。超过重复次数后将触发报错。
  228. times: 5,
  229. //用于自定义滑动验证各项请求的接口地址。一般情况,请勿配置该参数。
  230. apimap: {
  231. // 'analyze': '//a.com/nocaptcha/analyze.jsonp',
  232. // 'get_captcha': '//b.com/get_captcha/ver3',
  233. // 'get_captcha': '//pin3.aliyun.com/get_captcha/ver3'
  234. // 'get_img': '//c.com/get_img',
  235. // 'checkcode': '//d.com/captcha/checkcode.jsonp',
  236. // 'umid_Url': '//e.com/security/umscript/3.2.1/um.js',
  237. // 'uab_Url': '//aeu.alicdn.com/js/uac/909.js',
  238. // 'umid_serUrl': 'https://g.com/service/um.json'
  239. },
  240. //前端滑动验证通过时会触发该回调参数。您可以在该回调参数中将请求标识(token)、会话ID(sessionid)、签名串(sig)字段记录下来,随业务请求一同发送至您的服务端调用验签。
  241. callback: (data) => {
  242. this.sliderData = Object.assign({}, data, {
  243. appkey: NC_Opt.appkey,
  244. scene: NC_Opt.scene,
  245. });
  246. console.log(this.sliderData);
  247. },
  248. };
  249. let date11 = () => {
  250. let _date = new Date();
  251. let year = _date.getFullYear().toString();
  252. let month = _date.getMonth().toString();
  253. let day = _date.getDate().toString();
  254. let a = _date.getHours().toString();
  255. let b = _date.getMinutes().toString();
  256. let c = _date.getSeconds().toString();
  257. return year + month + day + a + b + c;
  258. };
  259. let c = date11();
  260. const scripts = [
  261. `https://g.alicdn.com/sd/ncpc/nc.js?t=${c}`,
  262. ];
  263. this.seriesLoadScripts(scripts, function () {
  264. var nc = new noCaptcha(NC_Opt);
  265. nc.upLang('cn', {
  266. _startTEXT: '请按住滑块,拖动到最右边',
  267. _yesTEXT: '验证通过',
  268. _error300: '哎呀,出错了,点击<a href="javascript:__nc.reset()">刷新</a>再来一次',
  269. _errorNetwork: '网络不给力,请<a href="javascript:__nc.reset()">点击刷新</a>',
  270. });
  271. });
  272. },
  273. }
  274. }
  275. </script>
  276. <style lang="scss" scoped>
  277. .verification {
  278. display: flex;
  279. justify-content: space-between;
  280. .dialog-code-btn {
  281. background: #00b96b;
  282. span {
  283. color : #fff !important;
  284. }
  285. }
  286. }
  287. .application-scheme-dialog .el-dialog__body {
  288. .dialog-code-btn {
  289. background: #00b96b;
  290. span {
  291. color : #fff !important;
  292. }
  293. }
  294. }
  295. .application-scheme-dialog .el-dialog__body .application-scheme-btn {
  296. background: #00b96b;
  297. color: #fff;
  298. }
  299. </style>