123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913 |
-
-
- //比较版本号大小,返回值(1:前大于后,0:相等,-1:前小于后)
- function versionStringCompare(preVersion, lastVersion){
- var sources = preVersion.split('.');
- var dests = lastVersion.split('.');
- var maxL = Math.max(sources.length, dests.length);
- var result = 0;
- for (var i = 0; i < maxL; i++) {
- var preValue = sources.length>i ? sources[i]:0;
- var preNum = isNaN(Number(preValue)) ? preValue.charCodeAt() : Number(preValue);
- var lastValue = dests.length>i ? dests[i]:0;
- var lastNum = isNaN(Number(lastValue)) ? lastValue.charCodeAt() : Number(lastValue);
- if (preNum < lastNum) {
- result = -1;
- break;
- } else if (preNum > lastNum) {
- result = 1;
- break;
- }
- }
- return result;
- }
-
- /*------------------------------全局专属 start--------------------------*/
-
- // 读取 cookie
- function getCookie_v378141(c_name)
- {
- if (document.cookie.length>0)
- {
- c_start = document.cookie.indexOf(c_name + "=")
- if (c_start!=-1)
- {
- c_start=c_start + c_name.length+1
- c_end=document.cookie.indexOf(";",c_start)
- if (c_end==-1) c_end=document.cookie.length
- return unescape(document.cookie.substring(c_start,c_end))
- }
- }
- return "";
- }
- /*------------------------------会员注册登录标签专属 start--------------------------*/
- if ("undefined" != typeof tag_userinfo_json) {
- tag_userinfo_1608459452(tag_userinfo_json);
- } else {
- if ("undefined" != typeof tag_user_login_json) {
- tag_user(tag_user_login_json);
- }
- if ("undefined" != typeof tag_user_reg_json) {
- tag_user(tag_user_reg_json);
- }
- if ("undefined" != typeof tag_user_logout_json) {
- tag_user(tag_user_logout_json);
- }
- if ("undefined" != typeof tag_user_cart_json) {
- tag_user(tag_user_cart_json);
- }
- }
- if ("undefined" != typeof tag_user_collect_json) {
- tag_collect_1608459452(tag_user_collect_json);
- }
- if ("undefined" != typeof tag_user_info_json) {
- tag_user_info(tag_user_info_json);
- }
-
- /*----新注册登录标签专属 start------*/
- function tag_userinfo_1608459452(result)
- {
- var users_id = getCookie_v378141('users_id');
-
- var before_display = '';
- var htmlObj = document.getElementById(result.htmlid);
- if (!htmlObj) {
- return true;
- } else {
- before_display = htmlObj.style.display;
- }
-
- if (users_id > 0 && htmlObj) {
- var box = document.querySelectorAll('[id^=ey_htmlid_v]');
- if (box && box.length > 0) {
- for (var i = box.length - 1; i >= 0; i--) {
- box[i].style.display = 'none';
- }
- } else {
- htmlObj.style.display = 'none';
- }
- }
-
- /*图形验证码*/
- var ey_login_vertify_display = '';
- if (document.getElementById('ey_login_vertify')) {
- ey_login_vertify_display = document.getElementById('ey_login_vertify').style.display;
- document.getElementById('ey_login_vertify').style.display = 'none';
- }
- /*end*/
-
- /*第三方快捷登录*/
- var third_party_login_display = third_party_wxlogin_display = third_party_wblogin_display = third_party_qqlogin_display = '';
- if (document.getElementById('ey_third_party_login')) {
- third_party_login_display = document.getElementById('ey_third_party_login').style.display;
- document.getElementById('ey_third_party_login').style.display = 'none';
- if (document.getElementById('ey_third_party_wxlogin')) {
- third_party_wxlogin_display = document.getElementById('ey_third_party_wxlogin').style.display;
- document.getElementById('ey_third_party_wxlogin').style.display = 'none';
- }
- if (document.getElementById('ey_third_party_wblogin')) {
- third_party_wblogin_display = document.getElementById('ey_third_party_wblogin').style.display;
- document.getElementById('ey_third_party_wblogin').style.display = 'none';
- }
- if (document.getElementById('ey_third_party_qqlogin')) {
- third_party_qqlogin_display = document.getElementById('ey_third_party_qqlogin').style.display;
- document.getElementById('ey_third_party_qqlogin').style.display = 'none';
- }
- }
- /*end*/
-
- if (window.jQuery) {
- $.ajax({
- type : 'post',
- url : result.root_dir+"/index.php?m=api&c=Diyajax&a=check_userinfo",
- data : {aid:ey_aid},
- dataType : 'json',
- success : function(res){
- loginafter_1610585975(res, htmlObj, before_display, ey_login_vertify_display, third_party_login_display, third_party_wxlogin_display, third_party_wblogin_display, third_party_qqlogin_display);
- }
- });
- } else {
- //步骤一:创建异步对象
- var ajax = new XMLHttpRequest();
- //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- ajax.open("post", result.root_dir+"/index.php?m=api&c=Diyajax&a=check_userinfo", true);
- // 给头部添加ajax信息
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- //步骤三:发送请求+数据
- ajax.send("aid="+ey_aid);
- //步骤四:注册事件 onreadystatechange 状态改变就会调用
- ajax.onreadystatechange = function () {
- //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- loginafter_1610585975(res, htmlObj, before_display, ey_login_vertify_display, third_party_login_display, third_party_wxlogin_display, third_party_wblogin_display, third_party_qqlogin_display);
- }
- }
- }
- }
-
- function loginafter_1610585975(res, htmlObj, before_display, ey_login_vertify_display, third_party_login_display, third_party_wxlogin_display, third_party_wblogin_display, third_party_qqlogin_display)
- {
- var box = document.querySelectorAll('[id^=ey_htmlid_v]');
- if (box && box.length > 0) {
- for (var i = box.length - 1; i >= 0; i--) {
- box[i].style.display = before_display;
- }
- } else if (htmlObj) {
- htmlObj.style.display = before_display;
- }
- if (1 == res.code) {
- if (1 == res.data.ey_is_login) {
- if (box && box.length > 0) {
- for (var i = box.length - 1; i >= 0; i--) {
- box[i].innerHTML = res.data.html;
- }
- } else if (htmlObj) {
- htmlObj.innerHTML = res.data.html;
- }
- try {
- executeScript_1610585974(res.data.html);
- } catch (e) {}
- } else {
- /*图形验证码*/
- if (1 == res.data.ey_login_vertify && document.getElementById('ey_login_vertify')) {
- document.getElementById('ey_login_vertify').style.display = ey_login_vertify_display;
- }
- /*end*/
-
- /*第三方快捷登录*/
- if (1 == res.data.ey_third_party_login && document.getElementById('ey_third_party_login')) {
- document.getElementById('ey_third_party_login').style.display = third_party_login_display;
- if (1 == res.data.ey_third_party_wxlogin && document.getElementById('ey_third_party_wxlogin')) {
- document.getElementById('ey_third_party_wxlogin').style.display = third_party_wxlogin_display;
- }
- if (1 == res.data.ey_third_party_wblogin && document.getElementById('ey_third_party_wblogin')) {
- document.getElementById('ey_third_party_wblogin').style.display = third_party_wblogin_display;
- }
- if (1 == res.data.ey_third_party_qqlogin && document.getElementById('ey_third_party_qqlogin')) {
- document.getElementById('ey_third_party_qqlogin').style.display = third_party_qqlogin_display;
- }
- }
- /*end*/
- }
- }
- }
-
- /**
- * 执行AJAX返回HTML片段中的JavaScript脚本
- * 将html里的js代码抽取出来,然后通过eval函数执行它
- * @param {[type]} html [description]
- * @return {[type]} [description]
- */
- function executeScript_1610585974(html)
- {
- var reg = /<script[^>]*>([^\x00]+)$/i;
- //对整段HTML片段按<\/script>拆分
- var htmlBlock = html.split("<\/script>");
- for (var i in htmlBlock)
- {
- var blocks;//匹配正则表达式的内容数组,blocks[1]就是真正的一段脚本内容,因为前面reg定义我们用了括号进行了捕获分组
- if (blocks = htmlBlock[i].match(reg))
- {
- //清除可能存在的注释标记,对于注释结尾-->可以忽略处理,eval一样能正常工作
- var code = blocks[1].replace(/<!--/, '');
- try {
- eval(code) //执行脚本
- } catch (e) {}
- }
- }
- }
-
- /*-----旧注册登录标签专属 start----*/
- function tag_user(result)
- {
- var obj = document.getElementById(result.id);
- var txtObj = document.getElementById(result.txtid);
- var cartObj = document.getElementById(result.cartid);
- var before_display = document.getElementById(result.id) ? document.getElementById(result.id).style.display : '';
- var before_cart_display = document.getElementById(result.cartid) ? document.getElementById(result.cartid).style.display : '';
- var before_html = '';
- var before_txt_html = '';
- if (cartObj) {
- cartObj.style.display="none";
- }
- if (txtObj) {
- before_txt_html = txtObj.innerHTML;
- if ('login' == result.type) {
- txtObj.innerHTML = 'Loading…';
- }
- } else if (obj) {
- before_html = obj.innerHTML;
- if ('login' == result.type) {
- obj.innerHTML = 'Loading…';
- }
- }
- if (obj) {
- obj.style.display="none";
- } else {
- obj = txtObj;
- }
-
- /*图形验证码*/
- var ey_login_vertify_display = '';
- if (document.getElementById('ey_login_vertify')) {
- ey_login_vertify_display = document.getElementById('ey_login_vertify').style.display;
- document.getElementById('ey_login_vertify').style.display = 'none';
- }
- /*end*/
-
- if ('login' == result.type){
- /*第三方快捷登录*/
- var third_party_login_display = '';
- if (document.getElementById('ey_third_party_login')) {
- third_party_login_display = document.getElementById('ey_third_party_login').style.display;
- document.getElementById('ey_third_party_login').style.display = 'none';
- if (document.getElementById('ey_third_party_wxlogin')) {
- var third_party_wxlogin_display = '';
- third_party_wxlogin_display = document.getElementById('ey_third_party_wxlogin').style.display;
- document.getElementById('ey_third_party_wxlogin').style.display = 'none';
- }
- if (document.getElementById('ey_third_party_wblogin')) {
- var third_party_wblogin_display = '';
- third_party_wblogin_display = document.getElementById('ey_third_party_wblogin').style.display;
- document.getElementById('ey_third_party_wblogin').style.display = 'none';
- }
- if (document.getElementById('ey_third_party_qqlogin')) {
- var third_party_qqlogin_display = '';
- third_party_qqlogin_display = document.getElementById('ey_third_party_qqlogin').style.display;
- document.getElementById('ey_third_party_qqlogin').style.display = 'none';
- }
- }
- /*end*/
- }
-
- var send_data = "type="+result.type+"&img="+result.img+"&afterhtml="+result.afterhtml;
- if (result.currentstyle != '') {
- send_data += "¤tstyle="+result.currentstyle;
- }
- //步骤一:创建异步对象
- var ajax = new XMLHttpRequest();
- //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=check_user", true);
- // 给头部添加ajax信息
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- //步骤三:发送请求+数据
- ajax.send(send_data);
- //步骤四:注册事件 onreadystatechange 状态改变就会调用
- ajax.onreadystatechange = function () {
- //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- if (1 == res.code) {
- if (1 == res.data.ey_is_login) {
- if (obj) {
- if ('login' == result.type) {
- if (result.txt.length > 0) {
- res.data.html = result.txt;
- }
- if (txtObj) {
- txtObj.innerHTML = res.data.html;
- } else {
- if (result.afterhtml) {
- obj.insertAdjacentHTML('afterend', res.data.html);
- obj.remove();
- } else {
- obj.innerHTML = res.data.html;
- }
- }
- try {
- obj.setAttribute("href", result.url);
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- } else if ('logout' == result.type) {
- if (txtObj) {
- txtObj.innerHTML = before_txt_html;
- } else {
- obj.innerHTML = before_html;
- }
- try {
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- } else if ('reg' == result.type) {
- obj.style.display="none";
- } else if ('cart' == result.type) {
- try {
- if (cartObj) {
- if (0 < res.data.ey_cart_num_20191212) {
- cartObj.innerHTML = res.data.ey_cart_num_20191212;
- cartObj.style.display = '';
- // if (before_cart_display) {
- // cartObj.style.display = ('none' == before_cart_display) ? '' : before_cart_display;
- // }
- } else {
- cartObj.innerHTML = '';
- }
- }
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- }
- }
- } else {
- // 恢复未登录前的html文案
- if (obj) {
- if (txtObj) {
- txtObj.innerHTML = before_txt_html;
- } else {
- obj.innerHTML = before_html;
- }
- if ('logout' == result.type) {
- obj.style.display="none";
- } else if ('cart' == result.type) {
- try {
- if (cartObj) {
- if (0 < res.data.ey_cart_num_20191212) {
- cartObj.innerHTML = res.data.ey_cart_num_20191212;
- if (before_cart_display) {
- cartObj.style.display = ('none' == before_cart_display) ? '' : before_cart_display;
- }
- }
- }
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- } else {
- try {
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- }
- }
- /*图形验证码*/
- if (1 == res.data.ey_login_vertify && document.getElementById('ey_login_vertify')) {
- document.getElementById('ey_login_vertify').style.display = ey_login_vertify_display;
- }
- /*end*/
- if ('login' == result.type) {
- /*第三方快捷登录*/
- if (1 == res.data.ey_third_party_login && document.getElementById('ey_third_party_login')) {
- document.getElementById('ey_third_party_login').style.display = third_party_login_display;
- if (1 == res.data.ey_third_party_wxlogin && document.getElementById('ey_third_party_wxlogin')) {
- document.getElementById('ey_third_party_wxlogin').style.display = third_party_wxlogin_display;
- }
- if (1 == res.data.ey_third_party_wblogin && document.getElementById('ey_third_party_wblogin')) {
- document.getElementById('ey_third_party_wblogin').style.display = third_party_wblogin_display;
- }
- if (1 == res.data.ey_third_party_qqlogin && document.getElementById('ey_third_party_qqlogin')) {
- document.getElementById('ey_third_party_qqlogin').style.display = third_party_qqlogin_display;
- }
- }
- /*end*/
- }
- }
- } else {
- if (obj) {
- obj.innerHTML = 'Error';
- try {
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- }
- }
- }
- }
- }
-
- function tag_collect_1608459452(result)
- {
- var collectObj = document.getElementById(result.collectid);
- var before_collect_display = document.getElementById(result.collectid) ? document.getElementById(result.collectid).style.display : '';
- if (collectObj) {
- collectObj.style.display="none";
- }
-
- var send_data = "type="+result.type+"&img="+result.img+"&afterhtml="+result.afterhtml;
- if (result.currentstyle != '') {
- send_data += "¤tstyle="+result.currentstyle;
- }
- //步骤一:创建异步对象
- var ajax = new XMLHttpRequest();
- //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=check_user", true);
- // 给头部添加ajax信息
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- //步骤三:发送请求+数据
- ajax.send(send_data);
- //步骤四:注册事件 onreadystatechange 状态改变就会调用
- ajax.onreadystatechange = function () {
- //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- if (1 == res.code) {
- if (1 == res.data.ey_is_login) {
- if ('collect' == result.type) {
- try {
- if (collectObj) {
- if (0 < res.data.ey_collect_num_20191212) {
- collectObj.innerHTML = res.data.ey_collect_num_20191212;
- if (!before_collect_display) {
- collectObj.style.display = ('none' == before_collect_display) ? '' : before_collect_display;
- }
- } else {
- collectObj.innerHTML = '';
- }
- }
- }catch(err){}
- }
- } else {
- // 恢复未登录前的html文案
- if ('collect' == result.type) {
- try {
- if (collectObj) {
- if (0 < res.data.ey_collect_num_20191212) {
- collectObj.innerHTML = res.data.ey_collect_num_20191212;
- if (!before_collect_display) {
- collectObj.style.display = ('none' == before_collect_display) ? '' : before_collect_display;
- }
- }
- }
- }catch(err){}
- }
- }
- }
- }
- }
- }
-
- function tag_user_info(result)
- {
- var obj = document.getElementById(result.t_uniqid);
- var before_display = '';
- if (obj) {
- before_display = obj.style.display;
- obj.style.display="none";
- }
-
- //步骤一:创建异步对象
- var ajax = new XMLHttpRequest();
- //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=get_tag_user_info", true);
- // 给头部添加ajax信息
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- //步骤三:发送请求+数据
- ajax.send("t_uniqid="+result.t_uniqid);
- //步骤四:注册事件 onreadystatechange 状态改变就会调用
- ajax.onreadystatechange = function () {
- //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- if (1 == res.code) {
- if (1 == res.data.ey_is_login) {
- var dtypes = res.data.dtypes;
- var users = res.data.users;
- for (var key in users) {
- var subobj = document.getElementById(key);
- if (subobj) {
- if ('img' == dtypes[key]) {
- subobj.setAttribute("src", users[key]);
- } else if ('href' == dtypes[key]) {
- subobj.setAttribute("href", users[key]);
- } else {
- subobj.innerHTML = users[key];
- }
- }
- }
- if (obj) {
- try {
- if (!before_display) {
- obj.style.display=before_display;
- }
- }catch(err){}
- }
- } else {
- if (obj) {
- obj.style.display="none";
- }
- }
- }
- }
- }
- }
-
-
- /*------------------------------浏览量标签专属 start--------------------------*/
- /**
- * 浏览量
- * @param {[type]} aid [description]
- * @return {[type]} [description]
- */
- function tag_arcclick(aids)
- {
- if (document.getElementsByClassName('eyou_arcclick')[0]) {
- var obj = document.getElementsByClassName('eyou_arcclick');
- var type = obj[0].getAttribute('data-type');
- var root_dir = obj[0].getAttribute('data-root_dir');
-
- if (window.jQuery) {
- $.ajax({
- type : 'GET',
- url : root_dir+"/index.php?m=api&c=Ajax&a=arcclick&type="+type+"&aids="+aids,
- data : {},
- dataType : 'json',
- success : function(res){
- for (var i = 0; i < obj.length; i++) {
- obj[i].innerHTML = res[obj[i].getAttribute('data-aid')]['click'];
- }
- }
- });
- } else {
- var ajax = new XMLHttpRequest();
- ajax.open("get", root_dir+"/index.php?m=api&c=Ajax&a=arcclick&type="+type+"&aids="+aids, true);
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- ajax.send();
- ajax.onreadystatechange = function () {
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- for (var i = 0; i < obj.length; i++) {
- obj[i].innerHTML = res[obj[i].getAttribute('data-aid')]['click'];
- }
- }
- }
- }
- }
- }
-
- if (document.getElementsByClassName('eyou_arcclick')[0]) {
- var arr_1653059625 = [];
- var obj_1653059625 = document.getElementsByClassName('eyou_arcclick');
- for (var i = 0; i < obj_1653059625.length; i++) {
- arr_1653059625.push(obj_1653059625[i].getAttribute('data-aid'));
- }
- var aids_1653059625 = arr_1653059625.toString();
- tag_arcclick(aids_1653059625);
- }
-
- function tag_getQueryString(name) {
- var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
- var r = window.location.search.substr(1).match(reg);
- if (r != null) return unescape(r[2]);
- return null;
- }
-
- /*------------------------------收藏标签专属 start--------------------------*/
-
- /**
- * 收藏、取消
- * @return {[type]} [description]
- */
- // function ey_v378141(aid,cla,obj)
- // {
- // var cancel_v379494 = obj.getAttribute('data-cancel');
- // var collected_v379494 = obj.getAttribute('data-collected');
- // var loginurl_v379494 = obj.getAttribute('data-loginurl');
- // var users_id = getCookie_v378141('users_id');
- // if (!users_id) {
- // if (document.htm.getElementById('ey_login_id_v665117')) {
- // $('#ey_login_id_v665117').trigger('click');
- // } else {
- // if (!window.layer) {
- // alert('请先登录');
- // } else {
- // var layerindex = layer.alert('请先登录', {id: 'layer_collection_v378141' , icon: 5, title: false}, function(){
- // window.location.href = loginurl_v379494;
- // });
- // //重新给指定层设定top等
- // var top = 150;
- // var top2 = document.htm.getElementById("layer_collection_v378141").parentNode.style.top;
- // top2 = top2.replace('px', '');
- // if (top2 > 150 && top2 < 500) {
- // top = top2;
- // }
- // layer.style(layerindex, {
- // top: top
- // });
- // }
- // return false;
- // }
- // }
-
- // //步骤一:创建异步对象
- // var ajax = new XMLHttpRequest();
- // //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- // ajax.open("post", root_dir+"/index.php?m=api&c=Ajax&a=collect_save", true);
- // // 给头部添加ajax信息
- // ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- // //步骤三:发送请求+数据
- // ajax.send('aid='+aid);
- // //步骤四:注册事件 onreadystatechange 状态改变就会调用
- // ajax.onreadystatechange = function () {
- // //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- // if (ajax.readyState==4 && ajax.status==200) {
- // var json = ajax.responseText;
- // var res = JSON.parse(json);
- // if (1 == res.code) {
- // if ('on' == cla){
- // if (res.data.opt == 'add') {
- // if (cancel_v379494) {
- // obj.classList.remove(cancel_v379494);
- // }
- // if (collected_v379494) {
- // obj.classList.add(collected_v379494);
- // }
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
- // collection_num = parseInt(collection_num) + 1;
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
- // }
- // } else {
- // if (collected_v379494) {
- // obj.classList.remove(collected_v379494);
- // }
- // if (cancel_v379494) {
- // obj.classList.add(cancel_v379494);
- // }
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
- // collection_num = parseInt(collection_num) - 1;
- // if (collection_num < 0) {
- // collection_num = 0;
- // }
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
- // }
- // }
- // }else{
- // var afterHtml = '';
- // if (res.data.opt == 'add') {
- // afterHtml = collected_v379494;
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
- // collection_num = parseInt(collection_num) + 1;
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
- // }
- // } else {
- // afterHtml = cancel_v379494;//加入收藏
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
- // collection_num = parseInt(collection_num) - 1;
- // if (collection_num < 0) {
- // collection_num = 0;
- // }
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
- // }
- // }
- // obj.innerHTML = afterHtml;
- // }
- // if (!window.layer) {
- // alert(res.msg);
- // } else {
- // layer.msg(res.msg, {time: 1000});
- // }
- // }
- // }
- // }
- // }
-
- /**
- * 异步判断是否收藏
- * @return {[type]} [description]
- */
- // function ey_v377550(aid,cla)
- // {
- // var users_id = getCookie_v378141('users_id');
- // if ($('body').find('*[data-name="eyou_collect"]') && 0 < aid && 0 < users_id) {
-
- // var obj = $('body').find('*[data-name="eyou_collect"]');
- // if (obj[0]) {
- // // 收藏之前的html文案
- // beforeHtml1595661966 = obj[0].innerHTML;
- // }
-
- // if (0 < users_id) {
- // // 正在加载
- // var loading = '<img src="data:image/gif;base64,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" />';
- // for (var i = 0; i < obj.length; i++) {
- // if (!obj[i]) {
- // obj[i].innerHTML = loading;
- // }
- // }
- // }
- // var cancel_v379494 = obj[0].getAttribute('data-cancel');
- // var collected_v379494 = obj[0].getAttribute('data-collected');
- // //步骤一:创建异步对象
- // var ajax = new XMLHttpRequest();
- // //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- // ajax.open("post", root_dir+"/index.php?m=api&c=Ajax&a=get_collection", true);
- // // 给头部添加ajax信息
- // ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- // //步骤三:发送请求+数据
- // ajax.send('aid='+aid);
- // //步骤四:注册事件 onreadystatechange 状态改变就会调用
- // ajax.onreadystatechange = function () {
- // //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- // if (ajax.readyState==4 && ajax.status==200) {
- // var json = ajax.responseText;
- // var res = JSON.parse(json);
- // if (1 == res.code) {
- // var data1 = res.data.data1; // 列表里全部文档收藏信息
- // var data2 = res.data.data2; // 列表里被用户收藏文档的收藏信息
- // var aid = 0;
- // var total = 0;
- // for (var i = 0; i < obj.length; i++) {
- // aid = obj[i].getAttribute('data-aid');
- // if (data2[aid]) {
- // if (0 < users_id) {
- // if ('on' == cla){
- // if (cancel_v379494) {
- // obj[i].classList.remove(cancel_v379494);
- // }
- // if (collected_v379494) {
- // obj[i].classList.add(collected_v379494);
- // }
- // } else{
- // // 收藏之后的html文案
- // if (obj[i]) obj[i].innerHTML = collected_v379494;
- // }
- // }
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // if (data2[aid]) {
- // total = data2[aid]['total'];
- // }
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
- // }
- // } else {
- // if (0 < users_id) {
- // if ('on' == cla){
- // if (collected_v379494) {
- // obj.classList.remove(collected_v379494);
- // }
- // if (cancel_v379494) {
- // obj.classList.add(cancel_v379494);
- // }
- // } else{
- // // 收藏之后的html文案
- // if (obj) obj.innerHTML = cancel_v379494;
- // }
- // }
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // if (data1[aid]) {
- // total = data1[aid]['total'];
- // }
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
- // }
- // }
- // }
- // } else {
- // var data1 = res.data.data1; // 列表里全部文档收藏信息
- // var aid = 0;
- // var total = 0;
- // for (var i = 0; i < obj.length; i++) {
- // aid = obj[i].getAttribute('data-aid');
- // if (0 < users_id) {
- // if ('on' == cla){
- // if (collected_v379494) {
- // obj[i].classList.remove(collected_v379494);
- // }
- // if (cancel_v379494) {
- // obj[i].classList.add(cancel_v379494);
- // }
- // } else{
- // // 收藏之后的html文案
- // if (obj[i]) obj[i].innerHTML = cancel_v379494;
- // }
- // }
- // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
- // if (data1[aid]) {
- // total = data1[aid]['total'];
- // }
- // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
- // }
- // }
- // }
- // }
- // }
- // }
- // }
-
- // if ($('body').find('*[data-name="eyou_collect"]')[0]) {
-
- // var ey_jquery_1624608277 = false;
- // if (!window.jQuery) {
- // ey_jquery_1624608277 = true;
- // } else {
- // var ey_jq_ver_1624608277 = jQuery.fn.jquery;
- // if (versionStringCompare(ey_jq_ver_1624608277,'1.8.0') === -1) {
- // ey_jquery_1624608277 = true;
- // }
- // }
- // if (ey_jquery_1624608277) {
- // document.htm.write(unescape("%3Cscript src='"+root_dir+"/public/static/common/js/jquery.min.js?v=v1.6.4' type='text/javascript'%3E%3C/script%3E"));
- // document.htm.write(unescape("%3Cscript type='text/javascript'%3E try{jQuery.noConflict();}catch(e){} %3C/script%3E"));
- // }
- // if (!window.layer || !layer.v) {
- // document.htm.write(unescape("%3Cscript src='"+root_dir+"/public/plugins/layer-v3.1.0/layer.js' type='text/javascript'%3E%3C/script%3E"));
- // }
-
- // var arr_1653059625 = [];
- // var obj_1653059625 = $('body').find('*[data-name="eyou_collect"]');
- // for (var i = 0; i < obj_1653059625.length; i++) {
- // arr_1653059625.push(obj_1653059625[i].getAttribute('data-aid'));
- // }
- // var aid_1653059625 = arr_1653059625.toString();
- // var class_value = $('body').find('*[data-name="eyou_collect"]')[0].getAttribute('data-class_value');
- // ey_v377550(aid_1653059625, class_value);
- // }
-
- /*------------------------------访问足迹专属 start--------------------------*/
-
- function footprint_1606269933(aid, root_dir)
- {
- var users_id = getCookie_v378141('users_id');
- if (!users_id || aid == 0) {
- return false;
- }
-
- //步骤一:创建异步对象
- var ajax = new XMLHttpRequest();
- //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
- ajax.open("post", root_dir+'/index.php?m=api&c=Ajax&a=footprint_save', true);
- // 给头部添加ajax信息
- ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
- // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
- ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
- //步骤三:发送请求+数据
- ajax.send('aid='+aid+'&_ajax=1');
- //步骤四:注册事件 onreadystatechange 状态改变就会调用
- ajax.onreadystatechange = function () {
- //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
- if (ajax.readyState==4 && ajax.status==200) {
- var json = ajax.responseText;
- var res = JSON.parse(json);
- if (1 == res.code) {
- //成功
- }
- }
- }
- }
-
- footprint_1606269933(ey_aid,root_dir);
|