123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
-
- jQuery(document).ready(function() {
-
- checkBrowserWidth();
- $(window).resize(checkBrowserWidth); // 当窗口大小改变时重新检查
-
- function checkBrowserWidth() {
- var browserWidth = $(window).width();
- if (browserWidth < 1001) {
- //alert('浏览器宽度小于600像素');
- $.backstretch("/template/pc/js/botstrap-step/bg2.png");
- }else{
- $.backstretch("/template/pc/js/botstrap-step/bg.jpg");
- }
- }
-
- /*
- Fullscreen background
- */
- //$.backstretch("/template/pc/js/botstrap-step/bg.jpg");
-
- $('#top-navbar-1').on('shown.bs.collapse', function(){
- $.backstretch("resize");
- });
- $('#top-navbar-1').on('hidden.bs.collapse', function(){
- $.backstretch("resize");
- });
-
- /*
- Form
- */
- $('.registration-form fieldset:first-child').fadeIn('slow');
-
- $('.registration-form input[type="text"], .registration-form input[type="password"], .registration-form textarea').on('focus', function() {
- $(this).removeClass('input-error');
- });
-
- // next step
- $('.registration-form .btn-next').on('click', function() {
-
-
- var a11 = $('#choose11').val();
- var a12 = $('#choose12').val();
- if(a11 == 0 || a12 == 0){
- $('#myModal .modal-body p').html('请选择您所在城市');
- $('#myModal').modal('show');
- return false;
- }
-
- //校验字段
- var a = $('#choose2').val();
- console.log(a);
- if(a == 0){
- $('#myModal .modal-body p').html('请选择申报专业');
- $('#myModal').modal('show');
- return false;
- }
-
- var b = $('#choose3').val();
- console.log(a);
- if(b == 0){
- $('#myModal .modal-body p').html('请选择申报等级');
- $('#myModal').modal('show');
- return false;
- }
-
-
- console.log($(this).index());
- //调用专业
- if($(this).index() == 4) {
-
- //隐藏查询表单
- $('#sele-box').hide();
- $('.ssl-box').hide();
-
-
- $('#loadingModal').modal('show');
- $.ajax({
- url: '/api/Diyajax/getZcZyList',
- method: 'POST',
- dataType: 'json', // 指定响应数据为JSON
- data: {
- id: a
- },
- success: function (data) {
- // 请求成功后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理返回的数据
- console.log('Ajax response:', data);
- console.log(data.data);
- var html = '';
- var html2 = '';
- $.each(data.data, function (i, e) {
- console.log(e);
- 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>';
- html2 += '<span class="hjk">'+e.title+'</span>';
- });
-
- if(html == ''){
- //隐藏
- $('#zy_box').hide();
- html = '暂无相关要求';
- }
- if(html2 == ''){
- //隐藏
- $('#zy_box').hide();
- html2 = '暂无相关要求';
- }
-
- $('#zys').empty();
- $('#zys').append(html);
-
-
- $('#zys-list').empty();
- $('#zys-list').append(html2);
-
-
- },
- error: function (xhr, status, error) {
- // 请求失败后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理错误
- console.error('Ajax error:', status, error);
- }
- });
- }
-
- //填完个人资料 点击下一步
- if($(this).index() == 7) {
-
- var b = $('#choose6').val();
- console.log(a);
- if(b == 0){
- $('#myModal .modal-body p').html('请选择年龄');
- $('#myModal').modal('show');
- return false;
- }
- var b = $('#choose5').val();
- console.log(a);
- if(b == 0){
- $('#myModal .modal-body p').html('请选择学历');
- $('#myModal').modal('show');
- return false;
- }
- var b = $('#choose7').val();
- console.log(a);
- if(b == 0){
- $('#myModal .modal-body p').html('请选择学校类型');
- $('#myModal').modal('show');
- return false;
- }
-
- var b33 = $('#choose33').val();
- console.log(a);
- if(b33 == 0){
- $('#myModal .modal-body p').html('请选择毕业时间');
- $('#myModal').modal('show');
- return false;
- }
-
- var xl = $('#choose5').val();
-
- //调用证书
- $('#loadingModal').modal('show');
- $.ajax({
- url: '/api/Diyajax/getZcZsList',
- method: 'POST',
- dataType: 'json', // 指定响应数据为JSON
- data: {
- id: a,
- xl: xl,
- },
- success: function (data) {
- // 请求成功后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理返回的数据
- console.log('Ajax response:', data);
- console.log(data.data);
- var html = '';
-
- var options = '';
- for(i=1;i<=30;i++) {
- options += '<option value="'+i+'">'+i+'年</option>';
- }
-
- $.each(data.data, function (i, e) {
- console.log(e);
- 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>';
- });
-
- if(html == ''){
- html = '暂无相关要求(0.5s后自动进行下一步)';
- //直接点击跳转下一步
- //ajax异步是一个线程
- //定时器也是一个独立线程
- //ajax直接执行点击有问题 放到定时器里面即可
- $('#zss').attr('data','no');
- setTimeout(function() {
- $('#jumpBtn').trigger('click');
- //$('#jumpBtn').parent().parent().hide();
- }, 500); //大于400
- }else{
- $('#zss').attr('data','yes');
- }
- $('#zss').empty();
- $('#zss').append(html);
- },
- error: function (xhr, status, error) {
- // 请求失败后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理错误
- console.error('Ajax error:', status, error);
- }
- });
- }
-
- if($(this).index() == 2) {
- //获取表单令牌 不能用接口直接过去 得用内部调用
- /*$('#loadingModal').modal('show');
- $.ajax({
- url: '/api/v1/api/get_token',
- method: 'POST',
- dataType: 'json', // 指定响应数据为JSON
- data: {},
- success: function (data) {
- // 请求成功后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理返回的数据
- console.log('Ajax response:', data);
- console.log(data.data);
-
- $('#token').val(data.value);
- },
- error: function (xhr, status, error) {
- // 请求失败后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理错误
- console.error('Ajax error:', status, error);
- }
- });*/
- }
-
-
- //继续下一屏切换
- var parent_fieldset = $(this).parents('fieldset');
- var next_step = true;
-
- parent_fieldset.find('input[type="text"], input[type="password"], textarea').each(function() {
- if( $(this).val() == "" ) {
- $(this).addClass('input-error');
- next_step = false;
- }
- else {
- $(this).removeClass('input-error');
- }
- });
-
- if( next_step ) {
- parent_fieldset.fadeOut(400, function() {
- $(this).next().fadeIn();
- });
- }
-
- });
-
- // previous step
- $('.registration-form .btn-previous').on('click', function() {
-
- console.log($(this).index());
- if($(this).index() == 6){
- //隐藏查询表单
- $('#sele-box').show();
- //$('.ssl-box').show();
- }
-
- if($(this).index() == 4){
- //判断是否空证书
- var a = $('#zss').attr('data');
- if(a == 'no'){
- setTimeout(function() {
- $('#jumpBtn2').trigger('click');
- //$('#jumpBtn').parent().parent().hide();
- }, 500); //大于400
- }
- }
-
- $(this).parents('fieldset').fadeOut(400, function() {
- $(this).prev().fadeIn();
- });
- });
-
- // submit
- $('.registration-form').on('submit', function(e) {
-
- /*$(this).find('input[type="text"], input[type="password"], textarea').each(function() {
- if( $(this).val() == "" ) {
- e.preventDefault();
- $(this).addClass('input-error');
- }
- else {
- $(this).removeClass('input-error');
- }
- });*/
-
- function isValidPhoneNumber(phoneNumber) {
- var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
- return regex.test(phoneNumber);
- }
-
- //开始手动验证
- var a = $('#per-name').val();
- var b = $('#per-phone').val();
- var c = $('#per-code').val();
-
- if(a == ''){
- $('#myModal .modal-body p').html('请输入您的称呼');
- $('#myModal').modal('show');
- return false;
- }
- if(b == ''){
- $('#myModal .modal-body p').html('请输入您的手机号码');
- $('#myModal').modal('show');
- return false;
- }
- console.log(isValidPhoneNumber(b));
- if(isValidPhoneNumber(b) === false){
- $('#myModal .modal-body p').html('请输入正确的手机号码格式');
- $('#myModal').modal('show');
- return false;
- }
- if(c == ''){
- $('#myModal .modal-body p').html('请输入验证码');
- $('#myModal').modal('show');
- return false;
- }
-
- //循环所有checkbox 重新构建数组
- //var zhengshu = [];
- var zhengshu = '';
- $('#zss input[type=checkbox]').each(function() {
- if ($(this).is(':checked')) {
- // 至少有一个checkbox被选中
- //zhengshu.push($(this).val());
- zhengshu += $(this).val()+',';
- } else {
- // 没有任何checkbox被选中
- //zhengshu.push("0");
- zhengshu += '0,';
- }
- });
- $('#zhengshu_val').val(zhengshu);
-
- //发送表单信息到后台
- $('#loadingModal .visually-hidden').html('获取结果中...');
- $('#loadingModal').modal('show');
- var formData = $('.registration-form').serializeArray();
- console.log(formData);
-
- //return false;
- $.ajax({
- url: '/api/Diyajax/insData',
- method: 'POST',
- dataType: 'json', // 指定响应数据为JSON
- data: formData,
- success: function(data) {
- // 请求成功后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理返回的数据
- console.log('Ajax response:', data);
-
- $('#loadingModal .visually-hidden').html(data.msg);
- $('#loadingModal').modal('show');
-
- if(data.code == 0){
- setTimeout(function() {
- $('#loadingModal').modal('hide');
- }, 3000); // 5秒后取消定时器
- }else{
- //重置表单数据
- //$('.registration-form').reset();
- $('.registration-form')[0].reset();
- //成功
- setTimeout(function() {
- $('#loadingModal').modal('hide');
- //跳转到结果页
- location.href = 'https://www.zc10000.com/cp?h='+data.data.code;
- }, 1000); // 5秒后取消定时器
- }
- },
- error: function(xhr, status, error) {
- // 请求失败后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理错误
- console.error('Ajax error:', status, error);
- }
- });
- return false;
- });
-
-
- /**
- * 获取验证码
- */
- /*$('#cx-rel-code').on('click',function (){
-
- });*/
-
- /**
- * 查询提交的事件
- */
- $('#cx-submit').on('click',function (){
-
- function isValidPhoneNumber(phoneNumber) {
- var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
- return regex.test(phoneNumber);
- }
-
- var a = $('#cx-code').val();
- if(a == ''){
- $('#myModal .modal-body p').html('请输入验证码');
- $('#myModal').modal('show');
- return false;
- }
- var b = $('#ffnp').val();
- if(isValidPhoneNumber(b) === false){
- $('#myModal .modal-body p').html('请输入正确的手机号码格式');
- $('#myModal').modal('show');
- return false;
- }
- var t = $('#times').val();
-
- //请求ajax
- $.ajax({
- url: '/api/Diyajax/cxCode',
- method: 'POST',
- dataType: 'json', // 指定响应数据为JSON
- data: {
- 'code': a,
- 'mobile': b,
- },
- success: function(data) {
- // 请求成功后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理返回的数据
- console.log('Ajax response:', data);
-
- $('#loadingModal .visually-hidden').html(data.msg);
- $('#loadingModal').modal('show');
-
- if(data.code == 0){
- setTimeout(function() {
- $('#loadingModal').modal('hide');
- }, 3000); // 5秒后取消定时器
- }else{
- //重置表单数据
- $('#cx-code').val('');
- //成功
- setTimeout(function() {
- $('#loadingModal').modal('hide');
- //跳转到结果页
- location.href = 'https://www.zc10000.com/cp?p='+b+'&t='+t;
- }, 2000); // 5秒后取消定时器
- }
- },
- error: function(xhr, status, error) {
- // 请求失败后隐藏加载状态
- $('#loadingModal').modal('hide');
- // 处理错误
- console.error('Ajax error:', status, error);
- }
- });
-
-
- $('.form-inline').trigger('click');
- return false;
-
-
- });
-
-
-
-
- // 获取长度为len的随机字符串
- function _getRandomString(len) {
- len = len || 32;
- var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; // 默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1
- var maxPos = $chars.length;
- var pwd = '';
- for (i = 0; i < len; i++) {
- pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
- }
- return pwd;
- }
- var timestamp = new Date().getTime();
- var times= timestamp + _getRandomString(32);
- console.log(times);
- $('#times').val(times);
-
-
- /**
- * 点击显示成功 示例
- */
- var browserWidth = $(window).width();
- if (browserWidth < 1001) {
- //手机端生效
- $('.but-success').removeClass('but-success2');
- }
- $('.but-success').click(function (){
- //$('.ssl-box').toggle();
- //.fadeOut();
- //.fadeIn();
- if($('.ssl-box').is(":hidden")){
- $('.ssl-box').fadeIn().show();
- $('.but-success').addClass('but-success2');
- }else{
- $('.ssl-box').fadeOut().hide();
- $('.but-success').removeClass('but-success2');
- }
-
- var browserWidth = $(window).width();
- if (browserWidth < 1001) {
- //手机端生效
- $('.but-success').removeClass('but-success2');
- $('.ssl-box').fadeOut().hide();
- $('#myModal').addClass('sss-box');
- /*$('#myModal .modal-title').html('详情');*/
- var html = $('.ssl-box').html();
- $('#myModal .modal-body p').html(html);
- $('#myModal').modal('show');
- }
-
- });
-
-
- });
|