Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ey_footer.js 44KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. //比较版本号大小,返回值(1:前大于后,0:相等,-1:前小于后)
  2. function versionStringCompare(preVersion, lastVersion){
  3. var sources = preVersion.split('.');
  4. var dests = lastVersion.split('.');
  5. var maxL = Math.max(sources.length, dests.length);
  6. var result = 0;
  7. for (var i = 0; i < maxL; i++) {
  8. var preValue = sources.length>i ? sources[i]:0;
  9. var preNum = isNaN(Number(preValue)) ? preValue.charCodeAt() : Number(preValue);
  10. var lastValue = dests.length>i ? dests[i]:0;
  11. var lastNum = isNaN(Number(lastValue)) ? lastValue.charCodeAt() : Number(lastValue);
  12. if (preNum < lastNum) {
  13. result = -1;
  14. break;
  15. } else if (preNum > lastNum) {
  16. result = 1;
  17. break;
  18. }
  19. }
  20. return result;
  21. }
  22. /*------------------------------全局专属 start--------------------------*/
  23. // 读取 cookie
  24. function getCookie_v378141(c_name)
  25. {
  26. if (document.cookie.length>0)
  27. {
  28. c_start = document.cookie.indexOf(c_name + "=")
  29. if (c_start!=-1)
  30. {
  31. c_start=c_start + c_name.length+1
  32. c_end=document.cookie.indexOf(";",c_start)
  33. if (c_end==-1) c_end=document.cookie.length
  34. return unescape(document.cookie.substring(c_start,c_end))
  35. }
  36. }
  37. return "";
  38. }
  39. /*------------------------------会员注册登录标签专属 start--------------------------*/
  40. if ("undefined" != typeof tag_userinfo_json) {
  41. tag_userinfo_1608459452(tag_userinfo_json);
  42. } else {
  43. if ("undefined" != typeof tag_user_login_json) {
  44. tag_user(tag_user_login_json);
  45. }
  46. if ("undefined" != typeof tag_user_reg_json) {
  47. tag_user(tag_user_reg_json);
  48. }
  49. if ("undefined" != typeof tag_user_logout_json) {
  50. tag_user(tag_user_logout_json);
  51. }
  52. if ("undefined" != typeof tag_user_cart_json) {
  53. tag_user(tag_user_cart_json);
  54. }
  55. }
  56. if ("undefined" != typeof tag_user_collect_json) {
  57. tag_collect_1608459452(tag_user_collect_json);
  58. }
  59. if ("undefined" != typeof tag_user_info_json) {
  60. tag_user_info(tag_user_info_json);
  61. }
  62. /*----新注册登录标签专属 start------*/
  63. function tag_userinfo_1608459452(result)
  64. {
  65. var users_id = getCookie_v378141('users_id');
  66. var before_display = '';
  67. var htmlObj = document.getElementById(result.htmlid);
  68. if (!htmlObj) {
  69. return true;
  70. } else {
  71. before_display = htmlObj.style.display;
  72. }
  73. if (users_id > 0 && htmlObj) {
  74. var box = document.querySelectorAll('[id^=ey_htmlid_v]');
  75. if (box && box.length > 0) {
  76. for (var i = box.length - 1; i >= 0; i--) {
  77. box[i].style.display = 'none';
  78. }
  79. } else {
  80. htmlObj.style.display = 'none';
  81. }
  82. }
  83. /*图形验证码*/
  84. var ey_login_vertify_display = '';
  85. if (document.getElementById('ey_login_vertify')) {
  86. ey_login_vertify_display = document.getElementById('ey_login_vertify').style.display;
  87. document.getElementById('ey_login_vertify').style.display = 'none';
  88. }
  89. /*end*/
  90. /*第三方快捷登录*/
  91. var third_party_login_display = third_party_wxlogin_display = third_party_wblogin_display = third_party_qqlogin_display = '';
  92. if (document.getElementById('ey_third_party_login')) {
  93. third_party_login_display = document.getElementById('ey_third_party_login').style.display;
  94. document.getElementById('ey_third_party_login').style.display = 'none';
  95. if (document.getElementById('ey_third_party_wxlogin')) {
  96. third_party_wxlogin_display = document.getElementById('ey_third_party_wxlogin').style.display;
  97. document.getElementById('ey_third_party_wxlogin').style.display = 'none';
  98. }
  99. if (document.getElementById('ey_third_party_wblogin')) {
  100. third_party_wblogin_display = document.getElementById('ey_third_party_wblogin').style.display;
  101. document.getElementById('ey_third_party_wblogin').style.display = 'none';
  102. }
  103. if (document.getElementById('ey_third_party_qqlogin')) {
  104. third_party_qqlogin_display = document.getElementById('ey_third_party_qqlogin').style.display;
  105. document.getElementById('ey_third_party_qqlogin').style.display = 'none';
  106. }
  107. }
  108. /*end*/
  109. if (window.jQuery) {
  110. $.ajax({
  111. type : 'post',
  112. url : result.root_dir+"/index.php?m=api&c=Diyajax&a=check_userinfo",
  113. data : {aid:ey_aid},
  114. dataType : 'json',
  115. success : function(res){
  116. 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);
  117. }
  118. });
  119. } else {
  120. //步骤一:创建异步对象
  121. var ajax = new XMLHttpRequest();
  122. //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  123. ajax.open("post", result.root_dir+"/index.php?m=api&c=Diyajax&a=check_userinfo", true);
  124. // 给头部添加ajax信息
  125. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  126. // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  127. ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  128. //步骤三:发送请求+数据
  129. ajax.send("aid="+ey_aid);
  130. //步骤四:注册事件 onreadystatechange 状态改变就会调用
  131. ajax.onreadystatechange = function () {
  132. //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  133. if (ajax.readyState==4 && ajax.status==200) {
  134. var json = ajax.responseText;
  135. var res = JSON.parse(json);
  136. 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);
  137.  }
  138. }
  139. }
  140. }
  141. 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)
  142. {
  143. var box = document.querySelectorAll('[id^=ey_htmlid_v]');
  144. if (box && box.length > 0) {
  145. for (var i = box.length - 1; i >= 0; i--) {
  146. box[i].style.display = before_display;
  147. }
  148. } else if (htmlObj) {
  149. htmlObj.style.display = before_display;
  150. }
  151. if (1 == res.code) {
  152. if (1 == res.data.ey_is_login) {
  153. if (box && box.length > 0) {
  154. for (var i = box.length - 1; i >= 0; i--) {
  155. box[i].innerHTML = res.data.html;
  156. }
  157. } else if (htmlObj) {
  158. htmlObj.innerHTML = res.data.html;
  159. }
  160. try {
  161. executeScript_1610585974(res.data.html);
  162. } catch (e) {}
  163. } else {
  164. /*图形验证码*/
  165. if (1 == res.data.ey_login_vertify && document.getElementById('ey_login_vertify')) {
  166. document.getElementById('ey_login_vertify').style.display = ey_login_vertify_display;
  167. }
  168. /*end*/
  169. /*第三方快捷登录*/
  170. if (1 == res.data.ey_third_party_login && document.getElementById('ey_third_party_login')) {
  171. document.getElementById('ey_third_party_login').style.display = third_party_login_display;
  172. if (1 == res.data.ey_third_party_wxlogin && document.getElementById('ey_third_party_wxlogin')) {
  173. document.getElementById('ey_third_party_wxlogin').style.display = third_party_wxlogin_display;
  174. }
  175. if (1 == res.data.ey_third_party_wblogin && document.getElementById('ey_third_party_wblogin')) {
  176. document.getElementById('ey_third_party_wblogin').style.display = third_party_wblogin_display;
  177. }
  178. if (1 == res.data.ey_third_party_qqlogin && document.getElementById('ey_third_party_qqlogin')) {
  179. document.getElementById('ey_third_party_qqlogin').style.display = third_party_qqlogin_display;
  180. }
  181. }
  182. /*end*/
  183. }
  184. }
  185. }
  186. /**
  187. * 执行AJAX返回HTML片段中的JavaScript脚本
  188. * 将html里的js代码抽取出来,然后通过eval函数执行它
  189. * @param {[type]} html [description]
  190. * @return {[type]} [description]
  191. */
  192. function executeScript_1610585974(html)
  193. {
  194. var reg = /<script[^>]*>([^\x00]+)$/i;
  195. //对整段HTML片段按<\/script>拆分
  196. var htmlBlock = html.split("<\/script>");
  197. for (var i in htmlBlock)
  198. {
  199. var blocks;//匹配正则表达式的内容数组,blocks[1]就是真正的一段脚本内容,因为前面reg定义我们用了括号进行了捕获分组
  200. if (blocks = htmlBlock[i].match(reg))
  201. {
  202. //清除可能存在的注释标记,对于注释结尾-->可以忽略处理,eval一样能正常工作
  203. var code = blocks[1].replace(/<!--/, '');
  204. try {
  205. eval(code) //执行脚本
  206. } catch (e) {}
  207. }
  208. }
  209. }
  210. /*-----旧注册登录标签专属 start----*/
  211. function tag_user(result)
  212. {
  213. var obj = document.getElementById(result.id);
  214. var txtObj = document.getElementById(result.txtid);
  215. var cartObj = document.getElementById(result.cartid);
  216. var before_display = document.getElementById(result.id) ? document.getElementById(result.id).style.display : '';
  217. var before_cart_display = document.getElementById(result.cartid) ? document.getElementById(result.cartid).style.display : '';
  218. var before_html = '';
  219. var before_txt_html = '';
  220. if (cartObj) {
  221. cartObj.style.display="none";
  222. }
  223. if (txtObj) {
  224. before_txt_html = txtObj.innerHTML;
  225. if ('login' == result.type) {
  226. txtObj.innerHTML = 'Loading…';
  227. }
  228. } else if (obj) {
  229. before_html = obj.innerHTML;
  230. if ('login' == result.type) {
  231. obj.innerHTML = 'Loading…';
  232. }
  233. }
  234. if (obj) {
  235. obj.style.display="none";
  236. } else {
  237. obj = txtObj;
  238. }
  239. /*图形验证码*/
  240. var ey_login_vertify_display = '';
  241. if (document.getElementById('ey_login_vertify')) {
  242. ey_login_vertify_display = document.getElementById('ey_login_vertify').style.display;
  243. document.getElementById('ey_login_vertify').style.display = 'none';
  244. }
  245. /*end*/
  246. if ('login' == result.type){
  247. /*第三方快捷登录*/
  248. var third_party_login_display = '';
  249. if (document.getElementById('ey_third_party_login')) {
  250. third_party_login_display = document.getElementById('ey_third_party_login').style.display;
  251. document.getElementById('ey_third_party_login').style.display = 'none';
  252. if (document.getElementById('ey_third_party_wxlogin')) {
  253. var third_party_wxlogin_display = '';
  254. third_party_wxlogin_display = document.getElementById('ey_third_party_wxlogin').style.display;
  255. document.getElementById('ey_third_party_wxlogin').style.display = 'none';
  256. }
  257. if (document.getElementById('ey_third_party_wblogin')) {
  258. var third_party_wblogin_display = '';
  259. third_party_wblogin_display = document.getElementById('ey_third_party_wblogin').style.display;
  260. document.getElementById('ey_third_party_wblogin').style.display = 'none';
  261. }
  262. if (document.getElementById('ey_third_party_qqlogin')) {
  263. var third_party_qqlogin_display = '';
  264. third_party_qqlogin_display = document.getElementById('ey_third_party_qqlogin').style.display;
  265. document.getElementById('ey_third_party_qqlogin').style.display = 'none';
  266. }
  267. }
  268. /*end*/
  269. }
  270. var send_data = "type="+result.type+"&img="+result.img+"&afterhtml="+result.afterhtml;
  271. if (result.currentstyle != '') {
  272. send_data += "&currentstyle="+result.currentstyle;
  273. }
  274. //步骤一:创建异步对象
  275. var ajax = new XMLHttpRequest();
  276. //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  277. ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=check_user", true);
  278. // 给头部添加ajax信息
  279. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  280. // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  281. ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  282. //步骤三:发送请求+数据
  283. ajax.send(send_data);
  284. //步骤四:注册事件 onreadystatechange 状态改变就会调用
  285. ajax.onreadystatechange = function () {
  286. //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  287. if (ajax.readyState==4 && ajax.status==200) {
  288. var json = ajax.responseText;
  289. var res = JSON.parse(json);
  290. if (1 == res.code) {
  291. if (1 == res.data.ey_is_login) {
  292. if (obj) {
  293. if ('login' == result.type) {
  294. if (result.txt.length > 0) {
  295. res.data.html = result.txt;
  296. }
  297. if (txtObj) {
  298. txtObj.innerHTML = res.data.html;
  299. } else {
  300. if (result.afterhtml) {
  301. obj.insertAdjacentHTML('afterend', res.data.html);
  302. obj.remove();
  303. } else {
  304. obj.innerHTML = res.data.html;
  305. }
  306. }
  307. try {
  308. obj.setAttribute("href", result.url);
  309. if (!before_display) {
  310. obj.style.display=before_display;
  311. }
  312. }catch(err){}
  313. } else if ('logout' == result.type) {
  314. if (txtObj) {
  315. txtObj.innerHTML = before_txt_html;
  316. } else {
  317. obj.innerHTML = before_html;
  318. }
  319. try {
  320. if (!before_display) {
  321. obj.style.display=before_display;
  322. }
  323. }catch(err){}
  324. } else if ('reg' == result.type) {
  325. obj.style.display="none";
  326. } else if ('cart' == result.type) {
  327. try {
  328. if (cartObj) {
  329. if (0 < res.data.ey_cart_num_20191212) {
  330. cartObj.innerHTML = res.data.ey_cart_num_20191212;
  331. cartObj.style.display = '';
  332. // if (before_cart_display) {
  333. // cartObj.style.display = ('none' == before_cart_display) ? '' : before_cart_display;
  334. // }
  335. } else {
  336. cartObj.innerHTML = '';
  337. }
  338. }
  339. if (!before_display) {
  340. obj.style.display=before_display;
  341. }
  342. }catch(err){}
  343. }
  344. }
  345. } else {
  346. // 恢复未登录前的html文案
  347. if (obj) {
  348. if (txtObj) {
  349. txtObj.innerHTML = before_txt_html;
  350. } else {
  351. obj.innerHTML = before_html;
  352. }
  353. if ('logout' == result.type) {
  354. obj.style.display="none";
  355. } else if ('cart' == result.type) {
  356. try {
  357. if (cartObj) {
  358. if (0 < res.data.ey_cart_num_20191212) {
  359. cartObj.innerHTML = res.data.ey_cart_num_20191212;
  360. if (before_cart_display) {
  361. cartObj.style.display = ('none' == before_cart_display) ? '' : before_cart_display;
  362. }
  363. }
  364. }
  365. if (!before_display) {
  366. obj.style.display=before_display;
  367. }
  368. }catch(err){}
  369. } else {
  370. try {
  371. if (!before_display) {
  372. obj.style.display=before_display;
  373. }
  374. }catch(err){}
  375. }
  376. }
  377. /*图形验证码*/
  378. if (1 == res.data.ey_login_vertify && document.getElementById('ey_login_vertify')) {
  379. document.getElementById('ey_login_vertify').style.display = ey_login_vertify_display;
  380. }
  381. /*end*/
  382. if ('login' == result.type) {
  383. /*第三方快捷登录*/
  384. if (1 == res.data.ey_third_party_login && document.getElementById('ey_third_party_login')) {
  385. document.getElementById('ey_third_party_login').style.display = third_party_login_display;
  386. if (1 == res.data.ey_third_party_wxlogin && document.getElementById('ey_third_party_wxlogin')) {
  387. document.getElementById('ey_third_party_wxlogin').style.display = third_party_wxlogin_display;
  388. }
  389. if (1 == res.data.ey_third_party_wblogin && document.getElementById('ey_third_party_wblogin')) {
  390. document.getElementById('ey_third_party_wblogin').style.display = third_party_wblogin_display;
  391. }
  392. if (1 == res.data.ey_third_party_qqlogin && document.getElementById('ey_third_party_qqlogin')) {
  393. document.getElementById('ey_third_party_qqlogin').style.display = third_party_qqlogin_display;
  394. }
  395. }
  396. /*end*/
  397. }
  398. }
  399. } else {
  400. if (obj) {
  401. obj.innerHTML = 'Error';
  402. try {
  403. if (!before_display) {
  404. obj.style.display=before_display;
  405. }
  406. }catch(err){}
  407. }
  408. }
  409.  }
  410. }
  411. }
  412. function tag_collect_1608459452(result)
  413. {
  414. var collectObj = document.getElementById(result.collectid);
  415. var before_collect_display = document.getElementById(result.collectid) ? document.getElementById(result.collectid).style.display : '';
  416. if (collectObj) {
  417. collectObj.style.display="none";
  418. }
  419. var send_data = "type="+result.type+"&img="+result.img+"&afterhtml="+result.afterhtml;
  420. if (result.currentstyle != '') {
  421. send_data += "&currentstyle="+result.currentstyle;
  422. }
  423. //步骤一:创建异步对象
  424. var ajax = new XMLHttpRequest();
  425. //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  426. ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=check_user", true);
  427. // 给头部添加ajax信息
  428. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  429. // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  430. ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  431. //步骤三:发送请求+数据
  432. ajax.send(send_data);
  433. //步骤四:注册事件 onreadystatechange 状态改变就会调用
  434. ajax.onreadystatechange = function () {
  435. //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  436. if (ajax.readyState==4 && ajax.status==200) {
  437. var json = ajax.responseText;
  438. var res = JSON.parse(json);
  439. if (1 == res.code) {
  440. if (1 == res.data.ey_is_login) {
  441. if ('collect' == result.type) {
  442. try {
  443. if (collectObj) {
  444. if (0 < res.data.ey_collect_num_20191212) {
  445. collectObj.innerHTML = res.data.ey_collect_num_20191212;
  446. if (!before_collect_display) {
  447. collectObj.style.display = ('none' == before_collect_display) ? '' : before_collect_display;
  448. }
  449. } else {
  450. collectObj.innerHTML = '';
  451. }
  452. }
  453. }catch(err){}
  454. }
  455. } else {
  456. // 恢复未登录前的html文案
  457. if ('collect' == result.type) {
  458. try {
  459. if (collectObj) {
  460. if (0 < res.data.ey_collect_num_20191212) {
  461. collectObj.innerHTML = res.data.ey_collect_num_20191212;
  462. if (!before_collect_display) {
  463. collectObj.style.display = ('none' == before_collect_display) ? '' : before_collect_display;
  464. }
  465. }
  466. }
  467. }catch(err){}
  468. }
  469. }
  470. }
  471.  }
  472. }
  473. }
  474. function tag_user_info(result)
  475. {
  476. var obj = document.getElementById(result.t_uniqid);
  477. var before_display = '';
  478. if (obj) {
  479. before_display = obj.style.display;
  480. obj.style.display="none";
  481. }
  482. //步骤一:创建异步对象
  483. var ajax = new XMLHttpRequest();
  484. //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  485. ajax.open("post", result.root_dir+"/index.php?m=api&c=Ajax&a=get_tag_user_info", true);
  486. // 给头部添加ajax信息
  487. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  488. // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  489. ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  490. //步骤三:发送请求+数据
  491. ajax.send("t_uniqid="+result.t_uniqid);
  492. //步骤四:注册事件 onreadystatechange 状态改变就会调用
  493. ajax.onreadystatechange = function () {
  494. //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  495. if (ajax.readyState==4 && ajax.status==200) {
  496. var json = ajax.responseText;
  497. var res = JSON.parse(json);
  498. if (1 == res.code) {
  499. if (1 == res.data.ey_is_login) {
  500. var dtypes = res.data.dtypes;
  501. var users = res.data.users;
  502. for (var key in users) {
  503. var subobj = document.getElementById(key);
  504. if (subobj) {
  505. if ('img' == dtypes[key]) {
  506. subobj.setAttribute("src", users[key]);
  507. } else if ('href' == dtypes[key]) {
  508. subobj.setAttribute("href", users[key]);
  509. } else {
  510. subobj.innerHTML = users[key];
  511. }
  512. }
  513. }
  514. if (obj) {
  515. try {
  516. if (!before_display) {
  517. obj.style.display=before_display;
  518. }
  519. }catch(err){}
  520. }
  521. } else {
  522. if (obj) {
  523. obj.style.display="none";
  524. }
  525. }
  526. }
  527.  }
  528. }
  529. }
  530. /*------------------------------浏览量标签专属 start--------------------------*/
  531. /**
  532. * 浏览量
  533. * @param {[type]} aid [description]
  534. * @return {[type]} [description]
  535. */
  536. function tag_arcclick(aids)
  537. {
  538. if (document.getElementsByClassName('eyou_arcclick')[0]) {
  539. var obj = document.getElementsByClassName('eyou_arcclick');
  540. var type = obj[0].getAttribute('data-type');
  541. var root_dir = obj[0].getAttribute('data-root_dir');
  542. if (window.jQuery) {
  543. $.ajax({
  544. type : 'GET',
  545. url : root_dir+"/index.php?m=api&c=Ajax&a=arcclick&type="+type+"&aids="+aids,
  546. data : {},
  547. dataType : 'json',
  548. success : function(res){
  549. for (var i = 0; i < obj.length; i++) {
  550. obj[i].innerHTML = res[obj[i].getAttribute('data-aid')]['click'];
  551. }
  552. }
  553. });
  554. } else {
  555. var ajax = new XMLHttpRequest();
  556. ajax.open("get", root_dir+"/index.php?m=api&c=Ajax&a=arcclick&type="+type+"&aids="+aids, true);
  557. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  558. // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  559. ajax.send();
  560. ajax.onreadystatechange = function () {
  561. if (ajax.readyState==4 && ajax.status==200) {
  562. var json = ajax.responseText;
  563. var res = JSON.parse(json);
  564. for (var i = 0; i < obj.length; i++) {
  565. obj[i].innerHTML = res[obj[i].getAttribute('data-aid')]['click'];
  566. }
  567.  }
  568. }
  569. }
  570. }
  571. }
  572. if (document.getElementsByClassName('eyou_arcclick')[0]) {
  573. var arr_1653059625 = [];
  574. var obj_1653059625 = document.getElementsByClassName('eyou_arcclick');
  575. for (var i = 0; i < obj_1653059625.length; i++) {
  576. arr_1653059625.push(obj_1653059625[i].getAttribute('data-aid'));
  577. }
  578. var aids_1653059625 = arr_1653059625.toString();
  579. tag_arcclick(aids_1653059625);
  580. }
  581. function tag_getQueryString(name) {
  582. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  583. var r = window.location.search.substr(1).match(reg);
  584. if (r != null) return unescape(r[2]);
  585. return null;
  586. }
  587. /*------------------------------收藏标签专属 start--------------------------*/
  588. /**
  589. * 收藏、取消
  590. * @return {[type]} [description]
  591. */
  592. // function ey_v378141(aid,cla,obj)
  593. // {
  594. // var cancel_v379494 = obj.getAttribute('data-cancel');
  595. // var collected_v379494 = obj.getAttribute('data-collected');
  596. // var loginurl_v379494 = obj.getAttribute('data-loginurl');
  597. // var users_id = getCookie_v378141('users_id');
  598. // if (!users_id) {
  599. // if (document.htm.getElementById('ey_login_id_v665117')) {
  600. // $('#ey_login_id_v665117').trigger('click');
  601. // } else {
  602. // if (!window.layer) {
  603. // alert('请先登录');
  604. // } else {
  605. // var layerindex = layer.alert('请先登录', {id: 'layer_collection_v378141' , icon: 5, title: false}, function(){
  606. // window.location.href = loginurl_v379494;
  607. // });
  608. // //重新给指定层设定top等
  609. // var top = 150;
  610. // var top2 = document.htm.getElementById("layer_collection_v378141").parentNode.style.top;
  611. // top2 = top2.replace('px', '');
  612. // if (top2 > 150 && top2 < 500) {
  613. // top = top2;
  614. // }
  615. // layer.style(layerindex, {
  616. // top: top
  617. // });
  618. // }
  619. // return false;
  620. // }
  621. // }
  622. // //步骤一:创建异步对象
  623. // var ajax = new XMLHttpRequest();
  624. // //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  625. // ajax.open("post", root_dir+"/index.php?m=api&c=Ajax&a=collect_save", true);
  626. // // 给头部添加ajax信息
  627. // ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  628. // // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  629. // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  630. // //步骤三:发送请求+数据
  631. // ajax.send('aid='+aid);
  632. // //步骤四:注册事件 onreadystatechange 状态改变就会调用
  633. // ajax.onreadystatechange = function () {
  634. // //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  635. // if (ajax.readyState==4 && ajax.status==200) {
  636. // var json = ajax.responseText;
  637. // var res = JSON.parse(json);
  638. // if (1 == res.code) {
  639. // if ('on' == cla){
  640. // if (res.data.opt == 'add') {
  641. // if (cancel_v379494) {
  642. // obj.classList.remove(cancel_v379494);
  643. // }
  644. // if (collected_v379494) {
  645. // obj.classList.add(collected_v379494);
  646. // }
  647. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  648. // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
  649. // collection_num = parseInt(collection_num) + 1;
  650. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
  651. // }
  652. // } else {
  653. // if (collected_v379494) {
  654. // obj.classList.remove(collected_v379494);
  655. // }
  656. // if (cancel_v379494) {
  657. // obj.classList.add(cancel_v379494);
  658. // }
  659. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  660. // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
  661. // collection_num = parseInt(collection_num) - 1;
  662. // if (collection_num < 0) {
  663. // collection_num = 0;
  664. // }
  665. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
  666. // }
  667. // }
  668. // }else{
  669. // var afterHtml = '';
  670. // if (res.data.opt == 'add') {
  671. // afterHtml = collected_v379494;
  672. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  673. // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
  674. // collection_num = parseInt(collection_num) + 1;
  675. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
  676. // }
  677. // } else {
  678. // afterHtml = cancel_v379494;//加入收藏
  679. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  680. // var collection_num = document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML;
  681. // collection_num = parseInt(collection_num) - 1;
  682. // if (collection_num < 0) {
  683. // collection_num = 0;
  684. // }
  685. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = collection_num;
  686. // }
  687. // }
  688. // obj.innerHTML = afterHtml;
  689. // }
  690. // if (!window.layer) {
  691. // alert(res.msg);
  692. // } else {
  693. // layer.msg(res.msg, {time: 1000});
  694. // }
  695. // }
  696. // }
  697. // }
  698. // }
  699. /**
  700. * 异步判断是否收藏
  701. * @return {[type]} [description]
  702. */
  703. // function ey_v377550(aid,cla)
  704. // {
  705. // var users_id = getCookie_v378141('users_id');
  706. // if ($('body').find('*[data-name="eyou_collect"]') && 0 < aid && 0 < users_id) {
  707. // var obj = $('body').find('*[data-name="eyou_collect"]');
  708. // if (obj[0]) {
  709. // // 收藏之前的html文案
  710. // beforeHtml1595661966 = obj[0].innerHTML;
  711. // }
  712. // if (0 < users_id) {
  713. // // 正在加载
  714. // var loading = '<img src="data:image/gif;base64,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" />';
  715. // for (var i = 0; i < obj.length; i++) {
  716. // if (!obj[i]) {
  717. // obj[i].innerHTML = loading;
  718. // }
  719. // }
  720. // }
  721. // var cancel_v379494 = obj[0].getAttribute('data-cancel');
  722. // var collected_v379494 = obj[0].getAttribute('data-collected');
  723. // //步骤一:创建异步对象
  724. // var ajax = new XMLHttpRequest();
  725. // //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  726. // ajax.open("post", root_dir+"/index.php?m=api&c=Ajax&a=get_collection", true);
  727. // // 给头部添加ajax信息
  728. // ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  729. // // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  730. // ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  731. // //步骤三:发送请求+数据
  732. // ajax.send('aid='+aid);
  733. // //步骤四:注册事件 onreadystatechange 状态改变就会调用
  734. // ajax.onreadystatechange = function () {
  735. // //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  736. // if (ajax.readyState==4 && ajax.status==200) {
  737. // var json = ajax.responseText;
  738. // var res = JSON.parse(json);
  739. // if (1 == res.code) {
  740. // var data1 = res.data.data1; // 列表里全部文档收藏信息
  741. // var data2 = res.data.data2; // 列表里被用户收藏文档的收藏信息
  742. // var aid = 0;
  743. // var total = 0;
  744. // for (var i = 0; i < obj.length; i++) {
  745. // aid = obj[i].getAttribute('data-aid');
  746. // if (data2[aid]) {
  747. // if (0 < users_id) {
  748. // if ('on' == cla){
  749. // if (cancel_v379494) {
  750. // obj[i].classList.remove(cancel_v379494);
  751. // }
  752. // if (collected_v379494) {
  753. // obj[i].classList.add(collected_v379494);
  754. // }
  755. // } else{
  756. // // 收藏之后的html文案
  757. // if (obj[i]) obj[i].innerHTML = collected_v379494;
  758. // }
  759. // }
  760. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  761. // if (data2[aid]) {
  762. // total = data2[aid]['total'];
  763. // }
  764. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
  765. // }
  766. // } else {
  767. // if (0 < users_id) {
  768. // if ('on' == cla){
  769. // if (collected_v379494) {
  770. // obj.classList.remove(collected_v379494);
  771. // }
  772. // if (cancel_v379494) {
  773. // obj.classList.add(cancel_v379494);
  774. // }
  775. // } else{
  776. // // 收藏之后的html文案
  777. // if (obj) obj.innerHTML = cancel_v379494;
  778. // }
  779. // }
  780. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  781. // if (data1[aid]) {
  782. // total = data1[aid]['total'];
  783. // }
  784. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
  785. // }
  786. // }
  787. // }
  788. // } else {
  789. // var data1 = res.data.data1; // 列表里全部文档收藏信息
  790. // var aid = 0;
  791. // var total = 0;
  792. // for (var i = 0; i < obj.length; i++) {
  793. // aid = obj[i].getAttribute('data-aid');
  794. // if (0 < users_id) {
  795. // if ('on' == cla){
  796. // if (collected_v379494) {
  797. // obj[i].classList.remove(collected_v379494);
  798. // }
  799. // if (cancel_v379494) {
  800. // obj[i].classList.add(cancel_v379494);
  801. // }
  802. // } else{
  803. // // 收藏之后的html文案
  804. // if (obj[i]) obj[i].innerHTML = cancel_v379494;
  805. // }
  806. // }
  807. // if (document.htm.getElementById("ey_cnum_v379494_"+aid)) {
  808. // if (data1[aid]) {
  809. // total = data1[aid]['total'];
  810. // }
  811. // document.htm.getElementById("ey_cnum_v379494_"+aid).innerHTML = total;
  812. // }
  813. // }
  814. // }
  815. // }
  816. // }
  817. // }
  818. // }
  819. // if ($('body').find('*[data-name="eyou_collect"]')[0]) {
  820. // var ey_jquery_1624608277 = false;
  821. // if (!window.jQuery) {
  822. // ey_jquery_1624608277 = true;
  823. // } else {
  824. // var ey_jq_ver_1624608277 = jQuery.fn.jquery;
  825. // if (versionStringCompare(ey_jq_ver_1624608277,'1.8.0') === -1) {
  826. // ey_jquery_1624608277 = true;
  827. // }
  828. // }
  829. // if (ey_jquery_1624608277) {
  830. // 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"));
  831. // document.htm.write(unescape("%3Cscript type='text/javascript'%3E try{jQuery.noConflict();}catch(e){} %3C/script%3E"));
  832. // }
  833. // if (!window.layer || !layer.v) {
  834. // document.htm.write(unescape("%3Cscript src='"+root_dir+"/public/plugins/layer-v3.1.0/layer.js' type='text/javascript'%3E%3C/script%3E"));
  835. // }
  836. // var arr_1653059625 = [];
  837. // var obj_1653059625 = $('body').find('*[data-name="eyou_collect"]');
  838. // for (var i = 0; i < obj_1653059625.length; i++) {
  839. // arr_1653059625.push(obj_1653059625[i].getAttribute('data-aid'));
  840. // }
  841. // var aid_1653059625 = arr_1653059625.toString();
  842. // var class_value = $('body').find('*[data-name="eyou_collect"]')[0].getAttribute('data-class_value');
  843. // ey_v377550(aid_1653059625, class_value);
  844. // }
  845. /*------------------------------访问足迹专属 start--------------------------*/
  846. function footprint_1606269933(aid, root_dir)
  847. {
  848. var users_id = getCookie_v378141('users_id');
  849. if (!users_id || aid == 0) {
  850. return false;
  851. }
  852. //步骤一:创建异步对象
  853. var ajax = new XMLHttpRequest();
  854. //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
  855. ajax.open("post", root_dir+'/index.php?m=api&c=Ajax&a=footprint_save', true);
  856. // 给头部添加ajax信息
  857. ajax.setRequestHeader("X-Requested-With","XMLHttpRequest");
  858. // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
  859. ajax.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  860. //步骤三:发送请求+数据
  861. ajax.send('aid='+aid+'&_ajax=1');
  862. //步骤四:注册事件 onreadystatechange 状态改变就会调用
  863. ajax.onreadystatechange = function () {
  864. //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
  865. if (ajax.readyState==4 && ajax.status==200) {
  866. var json = ajax.responseText;
  867. var res = JSON.parse(json);
  868. if (1 == res.code) {
  869. //成功
  870. }
  871. }
  872. }
  873. }
  874. footprint_1606269933(ey_aid,root_dir);