/* eslint-disable semi */ /* eslint-disable no-undef */ let urlData = getQueryString() let urlPrefix = getUrlPrefix() //获取url参数 let channelData = urlData.channel //定义官方渠道包 const channelDict = { 'mew0': 'https://image.lecheng163.com/mew_mew0.apk', 'mew1': 'https://image.lecheng163.com/mew_mew1.apk', 'mew2': 'https://image.lecheng163.com/mew_mew2.apk', 'mew3': 'https://image.lecheng163.com/mew_mew3.apk', 'mew4': 'https://image.lecheng163.com/mew_mew4.apk', 'mew5': 'https://image.lecheng163.com/mew_mew5.apk', 'mew6': 'https://image.lecheng163.com/mew_mew6.apk', 'mew7': 'https://image.lecheng163.com/mew_mew7.apk', 'mew8': 'https://image.lecheng163.com/mew_mew8.apk', 'mew9': 'https://image.lecheng163.com/mew_mew9.apk', 'mew10': 'https://image.lecheng163.com/mew_mew10.apk', 'gongzhonghao': 'https://image.lecheng163.com/mew_gongzhonghao.apk' // 'baomihua01': 'https://image.lecheng163.com/accompany_release_v_213_1_baomihua01_sign.apk' } function swiperFun() { var swiper = new Swiper('.swiper', { direction: 'vertical', pagination: '.swiper-pagination', paginationClickable :true, loop: true, autoplay: 5000, // nextButton: ".swiper-button-next", // prevButton: ".swiper-button-prev", }); } function swiperFun2() { var swiper2 = new Swiper('.swiper2', { direction: 'horizontal', pagination: '.swiper-pagination', paginationClickable :true, loop: true, autoplay: 5000, // nextButton: ".swiper-button-next", // prevButton: ".swiper-button-prev", }); } $(function () { let version = checkVersion() //判断url参数是否是与渠道包名一致 let androidUrl = null; channelDict.hasOwnProperty(channelData) ? androidUrl = channelDict[channelData] : androidUrl = 'https://image.nnbc123.cn/mew_official.apk'; // let iosUrl = 'http://doudouyue.com/8axv' //ios企业包 let iosUrl = 'http://doudouyue.com/e8hdlr' //ios企业包 // let iosUrl = 'http://fir.gzmangguo.cn/sbz6' //ios商店包 $(document).ready(function () { var deviceWidth = document.documentElement.clientWidth; if (deviceWidth > 768) { document.documentElement.style.fontSize = deviceWidth / 19.20 + 'px'; swiperFun(); } else { document.documentElement.style.fontSize = deviceWidth / 7.50 + 'px'; swiperFun2() } }); window.onresize = function () { var deviceWidth = document.documentElement.clientWidth; if (deviceWidth > 768) { document.documentElement.style.fontSize = deviceWidth / 19.20 + 'px'; swiperFun(); } else { document.documentElement.style.fontSize = deviceWidth / 7.50 + 'px'; swiperFun2() } } // 下载 $('.android').on('click', function () { window.location.href = androidUrl; }) $('.iphone').on('click', function () { window.location.href = iosUrl; }) //联系客服按钮 $('.homePc .kefu').click(function () { $('.service').fadeIn() }) $('.service .close').click(function () { $('.service').fadeOut() }) // 跳转充值 $('.homePc .charge').click(function () { // window.location.href = tranUrl +'/mew/modules/payment_pc/index.html'; }) $('.homeM .charge').click(function () { // window.location.href = tranUrl +'/mew/modules/payment/index.html'; }) })