Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

scripts.js 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. jQuery(document).ready(function() {
  2. checkBrowserWidth();
  3. $(window).resize(checkBrowserWidth); // 当窗口大小改变时重新检查
  4. function checkBrowserWidth() {
  5. var browserWidth = $(window).width();
  6. if (browserWidth < 1001) {
  7. //alert('浏览器宽度小于600像素');
  8. $.backstretch("/template/pc/js/botstrap-step/bg2.png");
  9. }else{
  10. $.backstretch("/template/pc/js/botstrap-step/bg.jpg");
  11. }
  12. }
  13. /*
  14. Fullscreen background
  15. */
  16. //$.backstretch("/template/pc/js/botstrap-step/bg.jpg");
  17. $('#top-navbar-1').on('shown.bs.collapse', function(){
  18. $.backstretch("resize");
  19. });
  20. $('#top-navbar-1').on('hidden.bs.collapse', function(){
  21. $.backstretch("resize");
  22. });
  23. /*
  24. Form
  25. */
  26. $('.registration-form fieldset:first-child').fadeIn('slow');
  27. $('.registration-form input[type="text"], .registration-form input[type="password"], .registration-form textarea').on('focus', function() {
  28. $(this).removeClass('input-error');
  29. });
  30. // next step
  31. $('.registration-form .btn-next').on('click', function() {
  32. var a11 = $('#choose11').val();
  33. var a12 = $('#choose12').val();
  34. if(a11 == 0 || a12 == 0){
  35. $('#myModal .modal-body p').html('请选择您所在城市');
  36. $('#myModal').modal('show');
  37. return false;
  38. }
  39. //校验字段
  40. var a = $('#choose2').val();
  41. console.log(a);
  42. if(a == 0){
  43. $('#myModal .modal-body p').html('请选择申报专业');
  44. $('#myModal').modal('show');
  45. return false;
  46. }
  47. var b = $('#choose3').val();
  48. console.log(a);
  49. if(b == 0){
  50. $('#myModal .modal-body p').html('请选择申报等级');
  51. $('#myModal').modal('show');
  52. return false;
  53. }
  54. console.log($(this).index());
  55. //调用专业
  56. if($(this).index() == 4) {
  57. //隐藏查询表单
  58. $('#sele-box').hide();
  59. $('.ssl-box').hide();
  60. $('#loadingModal').modal('show');
  61. $.ajax({
  62. url: '/api/Diyajax/getZcZyList',
  63. method: 'POST',
  64. dataType: 'json', // 指定响应数据为JSON
  65. data: {
  66. id: a
  67. },
  68. success: function (data) {
  69. // 请求成功后隐藏加载状态
  70. $('#loadingModal').modal('hide');
  71. // 处理返回的数据
  72. console.log('Ajax response:', data);
  73. console.log(data.data);
  74. var html = '';
  75. var html2 = '';
  76. $.each(data.data, function (i, e) {
  77. console.log(e);
  78. html += '<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;"><label class="checkbox-inline"><input type="checkbox" name="zy[]" id="inlineCheckbox'+i+'" value="'+e.id+'"> '+e.title+'</label></p>';
  79. html2 += '<span class="hjk">'+e.title+'</span>';
  80. });
  81. if(html == ''){
  82. //隐藏
  83. $('#zy_box').hide();
  84. html = '暂无相关要求';
  85. }
  86. if(html2 == ''){
  87. //隐藏
  88. $('#zy_box').hide();
  89. html2 = '暂无相关要求';
  90. }
  91. $('#zys').empty();
  92. $('#zys').append(html);
  93. $('#zys-list').empty();
  94. $('#zys-list').append(html2);
  95. },
  96. error: function (xhr, status, error) {
  97. // 请求失败后隐藏加载状态
  98. $('#loadingModal').modal('hide');
  99. // 处理错误
  100. console.error('Ajax error:', status, error);
  101. }
  102. });
  103. }
  104. //填完个人资料 点击下一步
  105. if($(this).index() == 7) {
  106. var b = $('#choose6').val();
  107. console.log(a);
  108. if(b == 0){
  109. $('#myModal .modal-body p').html('请选择年龄');
  110. $('#myModal').modal('show');
  111. return false;
  112. }
  113. var b = $('#choose5').val();
  114. console.log(a);
  115. if(b == 0){
  116. $('#myModal .modal-body p').html('请选择学历');
  117. $('#myModal').modal('show');
  118. return false;
  119. }
  120. var b = $('#choose7').val();
  121. console.log(a);
  122. if(b == 0){
  123. $('#myModal .modal-body p').html('请选择学校类型');
  124. $('#myModal').modal('show');
  125. return false;
  126. }
  127. var b33 = $('#choose33').val();
  128. console.log(a);
  129. if(b33 == 0){
  130. $('#myModal .modal-body p').html('请选择毕业时间');
  131. $('#myModal').modal('show');
  132. return false;
  133. }
  134. //调用证书
  135. $('#loadingModal').modal('show');
  136. $.ajax({
  137. url: '/api/Diyajax/getZcZsList',
  138. method: 'POST',
  139. dataType: 'json', // 指定响应数据为JSON
  140. data: {
  141. id: a
  142. },
  143. success: function (data) {
  144. // 请求成功后隐藏加载状态
  145. $('#loadingModal').modal('hide');
  146. // 处理返回的数据
  147. console.log('Ajax response:', data);
  148. console.log(data.data);
  149. var html = '';
  150. var options = '';
  151. for(i=1;i<=30;i++) {
  152. options += '<option value="'+i+'">'+i+'年</option>';
  153. }
  154. $.each(data.data, function (i, e) {
  155. console.log(e);
  156. html += '<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;"><label class="checkbox-inline" style="margin-top: -4px;font-size: 15px;"><input type="checkbox" name="zs[]" id="inlineCheckbox' + i + '" value="' + e.id + '"> ' + e.title + '</label><font style="margin-left:15px;"><select className="form-control-s" name="zsnx[]">'+options+'</select></font></p>';
  157. });
  158. if(html == ''){
  159. html = '暂无相关要求(2s后自动进行下一步)';
  160. //直接点击跳转下一步
  161. //ajax异步是一个线程
  162. //定时器也是一个独立线程
  163. //ajax直接执行点击有问题 放到定时器里面即可
  164. setTimeout(function() {
  165. $('#jumpBtn').trigger('click');
  166. //$('#jumpBtn').parent().parent().hide();
  167. }, 2000);
  168. }
  169. $('#zss').empty();
  170. $('#zss').append(html);
  171. },
  172. error: function (xhr, status, error) {
  173. // 请求失败后隐藏加载状态
  174. $('#loadingModal').modal('hide');
  175. // 处理错误
  176. console.error('Ajax error:', status, error);
  177. }
  178. });
  179. }
  180. if($(this).index() == 2) {
  181. //获取表单令牌 不能用接口直接过去 得用内部调用
  182. /*$('#loadingModal').modal('show');
  183. $.ajax({
  184. url: '/api/v1/api/get_token',
  185. method: 'POST',
  186. dataType: 'json', // 指定响应数据为JSON
  187. data: {},
  188. success: function (data) {
  189. // 请求成功后隐藏加载状态
  190. $('#loadingModal').modal('hide');
  191. // 处理返回的数据
  192. console.log('Ajax response:', data);
  193. console.log(data.data);
  194. $('#token').val(data.value);
  195. },
  196. error: function (xhr, status, error) {
  197. // 请求失败后隐藏加载状态
  198. $('#loadingModal').modal('hide');
  199. // 处理错误
  200. console.error('Ajax error:', status, error);
  201. }
  202. });*/
  203. }
  204. //继续下一屏切换
  205. var parent_fieldset = $(this).parents('fieldset');
  206. var next_step = true;
  207. parent_fieldset.find('input[type="text"], input[type="password"], textarea').each(function() {
  208. if( $(this).val() == "" ) {
  209. $(this).addClass('input-error');
  210. next_step = false;
  211. }
  212. else {
  213. $(this).removeClass('input-error');
  214. }
  215. });
  216. if( next_step ) {
  217. parent_fieldset.fadeOut(400, function() {
  218. $(this).next().fadeIn();
  219. });
  220. }
  221. });
  222. // previous step
  223. $('.registration-form .btn-previous').on('click', function() {
  224. console.log($(this).index());
  225. if($(this).index() == 6){
  226. //隐藏查询表单
  227. $('#sele-box').show();
  228. $('.ssl-box').show();
  229. }
  230. $(this).parents('fieldset').fadeOut(400, function() {
  231. $(this).prev().fadeIn();
  232. });
  233. });
  234. // submit
  235. $('.registration-form').on('submit', function(e) {
  236. /*$(this).find('input[type="text"], input[type="password"], textarea').each(function() {
  237. if( $(this).val() == "" ) {
  238. e.preventDefault();
  239. $(this).addClass('input-error');
  240. }
  241. else {
  242. $(this).removeClass('input-error');
  243. }
  244. });*/
  245. function isValidPhoneNumber(phoneNumber) {
  246. var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
  247. return regex.test(phoneNumber);
  248. }
  249. //开始手动验证
  250. var a = $('#per-name').val();
  251. var b = $('#per-phone').val();
  252. var c = $('#per-code').val();
  253. if(a == ''){
  254. $('#myModal .modal-body p').html('请输入您的称呼');
  255. $('#myModal').modal('show');
  256. return false;
  257. }
  258. if(b == ''){
  259. $('#myModal .modal-body p').html('请输入您的手机号码');
  260. $('#myModal').modal('show');
  261. return false;
  262. }
  263. console.log(isValidPhoneNumber(b));
  264. if(isValidPhoneNumber(b) === false){
  265. $('#myModal .modal-body p').html('请输入正确的手机号码格式');
  266. $('#myModal').modal('show');
  267. return false;
  268. }
  269. if(c == ''){
  270. $('#myModal .modal-body p').html('请输入验证码');
  271. $('#myModal').modal('show');
  272. return false;
  273. }
  274. //循环所有checkbox 重新构建数组
  275. //var zhengshu = [];
  276. var zhengshu = '';
  277. $('#zss input[type=checkbox]').each(function() {
  278. if ($(this).is(':checked')) {
  279. // 至少有一个checkbox被选中
  280. //zhengshu.push($(this).val());
  281. zhengshu += $(this).val()+',';
  282. } else {
  283. // 没有任何checkbox被选中
  284. //zhengshu.push("0");
  285. zhengshu += '0,';
  286. }
  287. });
  288. $('#zhengshu_val').val(zhengshu);
  289. //发送表单信息到后台
  290. $('#loadingModal .visually-hidden').html('获取结果中...');
  291. $('#loadingModal').modal('show');
  292. var formData = $('.registration-form').serializeArray();
  293. console.log(formData);
  294. //return false;
  295. $.ajax({
  296. url: '/api/Diyajax/insData',
  297. method: 'POST',
  298. dataType: 'json', // 指定响应数据为JSON
  299. data: formData,
  300. success: function(data) {
  301. // 请求成功后隐藏加载状态
  302. $('#loadingModal').modal('hide');
  303. // 处理返回的数据
  304. console.log('Ajax response:', data);
  305. $('#loadingModal .visually-hidden').html(data.msg);
  306. $('#loadingModal').modal('show');
  307. if(data.code == 0){
  308. setTimeout(function() {
  309. $('#loadingModal').modal('hide');
  310. }, 3000); // 5秒后取消定时器
  311. }else{
  312. //重置表单数据
  313. //$('.registration-form').reset();
  314. $('.registration-form')[0].reset();
  315. //成功
  316. setTimeout(function() {
  317. $('#loadingModal').modal('hide');
  318. //跳转到结果页
  319. location.href = 'https://www.zc10000.com/cp?h='+data.data.code;
  320. }, 1000); // 5秒后取消定时器
  321. }
  322. },
  323. error: function(xhr, status, error) {
  324. // 请求失败后隐藏加载状态
  325. $('#loadingModal').modal('hide');
  326. // 处理错误
  327. console.error('Ajax error:', status, error);
  328. }
  329. });
  330. return false;
  331. });
  332. /**
  333. * 获取验证码
  334. */
  335. /*$('#cx-rel-code').on('click',function (){
  336. });*/
  337. /**
  338. * 查询提交的事件
  339. */
  340. $('#cx-submit').on('click',function (){
  341. function isValidPhoneNumber(phoneNumber) {
  342. var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
  343. return regex.test(phoneNumber);
  344. }
  345. var a = $('#cx-code').val();
  346. if(a == ''){
  347. $('#myModal .modal-body p').html('请输入验证码');
  348. $('#myModal').modal('show');
  349. return false;
  350. }
  351. var b = $('#ffnp').val();
  352. if(isValidPhoneNumber(b) === false){
  353. $('#myModal .modal-body p').html('请输入正确的手机号码格式');
  354. $('#myModal').modal('show');
  355. return false;
  356. }
  357. var t = $('#times').val();
  358. //请求ajax
  359. $.ajax({
  360. url: '/api/Diyajax/cxCode',
  361. method: 'POST',
  362. dataType: 'json', // 指定响应数据为JSON
  363. data: {
  364. 'code': a,
  365. 'mobile': b,
  366. },
  367. success: function(data) {
  368. // 请求成功后隐藏加载状态
  369. $('#loadingModal').modal('hide');
  370. // 处理返回的数据
  371. console.log('Ajax response:', data);
  372. $('#loadingModal .visually-hidden').html(data.msg);
  373. $('#loadingModal').modal('show');
  374. if(data.code == 0){
  375. setTimeout(function() {
  376. $('#loadingModal').modal('hide');
  377. }, 3000); // 5秒后取消定时器
  378. }else{
  379. //重置表单数据
  380. $('#cx-code').val('');
  381. //成功
  382. setTimeout(function() {
  383. $('#loadingModal').modal('hide');
  384. //跳转到结果页
  385. location.href = 'https://www.zc10000.com/cp?p='+b+'&t='+t;
  386. }, 2000); // 5秒后取消定时器
  387. }
  388. },
  389. error: function(xhr, status, error) {
  390. // 请求失败后隐藏加载状态
  391. $('#loadingModal').modal('hide');
  392. // 处理错误
  393. console.error('Ajax error:', status, error);
  394. }
  395. });
  396. $('.form-inline').trigger('click');
  397. return false;
  398. });
  399. // 获取长度为len的随机字符串
  400. function _getRandomString(len) {
  401. len = len || 32;
  402. var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; // 默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1
  403. var maxPos = $chars.length;
  404. var pwd = '';
  405. for (i = 0; i < len; i++) {
  406. pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
  407. }
  408. return pwd;
  409. }
  410. var timestamp = new Date().getTime();
  411. var times= timestamp + _getRandomString(32);
  412. console.log(times);
  413. $('#times').val(times);
  414. /**
  415. * 点击显示成功 示例
  416. */
  417. var browserWidth = $(window).width();
  418. if (browserWidth < 1001) {
  419. //手机端生效
  420. $('.but-success').removeClass('but-success2');
  421. }
  422. $('.but-success').click(function (){
  423. //$('.ssl-box').toggle();
  424. //.fadeOut();
  425. //.fadeIn();
  426. if($('.ssl-box').is(":hidden")){
  427. $('.ssl-box').fadeIn().show();
  428. $('.but-success').addClass('but-success2');
  429. }else{
  430. $('.ssl-box').fadeOut().hide();
  431. $('.but-success').removeClass('but-success2');
  432. }
  433. var browserWidth = $(window).width();
  434. if (browserWidth < 1001) {
  435. //手机端生效
  436. $('.but-success').removeClass('but-success2');
  437. $('.ssl-box').fadeOut().hide();
  438. $('#myModal').addClass('sss-box');
  439. $('#myModal .modal-title').html('详情');
  440. var html = $('.ssl-box').html();
  441. $('#myModal .modal-body p').html(html);
  442. $('#myModal').modal('show');
  443. }
  444. });
  445. });