window.foton = window.foton || {}; (function(){ function pk(){ this.baseUrl = window.location.origin this.init(); } p = pk.prototype; p.init = function(){ this.bindEvent(); this.listenTopBar(); this.yysjLink(); this.qjzs(); this.qjgc(); this.jctj(); this.yysj(); // 模块动画 var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', offset: 100, mobile: false, live: true }); wow.init(); } p.bindEvent = function(){ const _this= this // 预约试驾 $(".submit").click(e=>{ var flag = true; var msg = ""; if(!$("#name").val()) { msg = "姓名不能为空!"; flag = false; alertMsg(msg); return false; } p.checkPhoneNum($("#realPhone")).then( result => { if(!result){ }else{ $(".yysj select").each(function() { var select = $(this).find("option:selected"); if(select.val() == -1) { flag = false; msg = select.html(); return false; } }); flag=true if(!flag) { alertMsg(msg); return false; } if (flag) { var params = { BrandId: $("#brand").val(), SeriesId: $("#carSeries").val(), ProvinceId: $("#province").val(), CityId: $("#city").val(), DealerId: $("#Dealer").val(), Name: $("#name").val(), Phone: $("#realPhone").val(), Remark: $("#Remark").val() }; _this.getData('post', _this.baseUrl+"/tunland/clue/PostLeads", params).then(resp => { if(resp.status == 0){ alertMsg("提交成功"); } }) p.LzInfo(); } else { alertMsg(msg); } } }) }) //关闭弹窗按钮 $(".modalfooter button").on("click", function() { $(".alertbox").hide() }); } // 导航栏吸附 p.listenTopBar = function(){ $(document).scroll(e=>{ let bannerH = $(".topImg").height() - 75; let top = $(document).scrollTop(); if(top >= bannerH){ $(".titleBox").addClass("fixed"); }else{ $(".titleBox").removeClass("fixed"); } }) // 锚点 let ary = ["cpld", "qjzs", "jctj", "cspz"]; $(".titleBox .tab").click(e=>{ console.log('index'); let index = $(e.currentTarget).index(); let section = $(`.${ary[index]}`); let top = section.offset().top-56; window.scrollTo({ top: top, behavior: "smooth" }) $(".titleBox .tab").removeClass("active"); $(e.currentTarget).addClass("active"); }) let topList = [] ary.forEach((item) => { let section = $(`.${item}`); topList.push(section.offset().top-56) }) $(window).scroll(function () { var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; for(let i = 1 ;i<4;i++){ if(scrollToptopList[i-1]&&scrollToptopList[3]){ $(".titleBox .tab").removeClass("active"); $(".titleBox .tab")[3].className+=' active' } } }) } //预约跳转 p.yysjLink = function(){ $('.tab.radio').click(()=>{ window.location.href="https://pickup.foton.com.cn/activity/testdrive/m/" }) } // 全景展示滚动 p.qjzs = function(){ new Swiper(".qjzs .swiper-container", { prevButton:'.qjzs .wg', nextButton:'.qjzs .ns', onSlideChangeStart: function(swiper){ // alert(swiper.activeIndex); $("#container .qjzs .nav .line").toggleClass("right"); } }); } //全景观车 p.qjgc=function(){ $('.vr').click(()=>{ console.log('sss') window.location.href = "http://foton.cloud-top.com.cn/p4_7/" }) } // 精彩图集 p.jctj = function(){ var galleryTop = new Swiper('.swiper1', { // nextButton: '.swiper-button-next', // prevButton: '.swiper-button-prev', spaceBetween: 10, }); var galleryThumbs = new Swiper('.swiper2', { spaceBetween: 10, centeredSlides: true, slidesPerView: 'auto', touchRatio: 0.2, slideToClickedSlide: true }); galleryTop.params.control = galleryThumbs; galleryThumbs.params.control = galleryTop; } // 预约试驾 p.yysj = function(){ const _this = this; setProvince(); setBrand(); function setProvince(){ _this.getData('get', _this.baseUrl+ "/tunland/clue/getProvince").then(resp => { if(resp.status == 1 ){ return; } $("#province").empty(); resp.data.unshift({ID:-1, FNAME:"省份"}); $.each(resp.data, function(i, val) { var $option = $(''); $("#province").append($option); }); }) $("#province").bind("change", function() { var provinceid = $("#province option:selected").attr("value"); setCity(provinceid); }); } function setCity(provinceid){ _this.getData('get', _this.baseUrl+ "/tunland/clue/getCityOfPronvince", {pId: provinceid}).then(resp => { if(resp.status == 1 ){ return; } $("#city").empty(); $.each(resp.data, function(i, val) { var $option = $(''); $("#city").append($option); }); }) $("#city").unbind("change"); $("#city").bind("change", function() { setShop($("#city").val()); }); } function setBrand(){ _this.getData( 'get', _this.baseUrl+ "/tunland/clue/getBrand").then(resp => { if(resp.status == 1 ){ return; } $("#brand").empty(); resp.data.unshift({ID:-1, NAME:"品牌"}); $.each(resp.data, function(i, val) { if (val.ID == '504f7428-439a-4f87-9540-1ad1f334962e' || val.ID == -1) { var $option = $(''); $("#brand").append($option); } }); }) $("#brand").bind("change", function() { setCarSeries($("#brand").val()); }); } function setCarSeries(brandId){ $("#carSeries").empty(); _this.getData( 'get', _this.baseUrl+ "/tunland/clue/getSeries", {brandId}).then( resp => { if(resp.status == 1 ){ return; } resp.data.unshift({ID:-1, NAME:"选择车型"}); $.each(resp.data, function(i, val) { var $option = $(''); $("#carSeries").append($option); }); // if(!isNaN(isbind)) { // $("#carSeries").val(isbind); // } }) } } p.checkPhoneNum = function(vInput, enable) { //手机号 var reg = /^1(3|4|5|6|8|7)\d{9}$/; var flag = false; var phoneVal = vInput.val(); if(phoneVal == "" || phoneVal == "手机号码") { alertMsg("手机号不能为空"); } else if(!reg.test(phoneVal)) { alertMsg("请输入正确的手机号"); } else { //验证手机号码是否已经注册过 if(enable) { var urlJson = { a: "Verifymtel", tel: phoneVal } return new Promise(resolve => { this.getData(_this.baseUrl+ "/tunland/clue/getProvince", urlJson).then(resp => { if(resp.statcode == 0) { resolve(true); }else{ resolve(false); } }) }) } else { return Promise.resolve(true); } } return Promise.resolve(flag); } p.LzInfo = function () { const _this= this $.ajax({ type: "POST", async: false, url: _this.baseUrl+"/tunland/dmp/dmpLzInfo", data: { brandId: $("#brand").val(), seriesId: $("#carSeries").val(), provinceId: $("#province").val(), cityId: $("#city").val(), name: $("#name").val(), tel: $("#realPhone").val() }, dataType: "json" }); } p.getData = function(method="GET", url, data={}){ return new Promise(resolve=>{ $.ajax({ url:url, method: method, data: method.toUpperCase()=="GET" ? data : JSON.stringify(data), dataType:'json', contentType:"application/json;charset=utf-8", success:e=>{ resolve(e) } }) }) } function alertMsg(content) { $('.alertbox').show(); $('.alertbox').css("z-index", "999"); $(".modalbody").html(content); }; window.foton.pk = pk; })()