설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scripts.js 16KB

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