|
@@ -90,4 +90,19 @@ $(document).ready(function () {
|
|
|
// $('#header_right #quitpage_btn').bind('click', function() {
|
|
|
// quitThisPage();
|
|
|
// });
|
|
|
+
|
|
|
+ if (window.location.href.indexOf('page.html') !== -1) {
|
|
|
+
|
|
|
+ console.log("href:" + window.location.href);
|
|
|
+ console.log("search:" + window.location.search);
|
|
|
+ console.log("search:" + location.search);
|
|
|
+ const entry = getQueryStringByName('entry');
|
|
|
+ if(typeof entry !== 'undefined' && entry === 'expire') {
|
|
|
+ console.log('enter from expire entry');
|
|
|
+ clearTimeout(hrefHashChangeTimer);
|
|
|
+ utilStartAlertDialog("<div><span>此悬浮入口菜单即将下线,请转为通过用户维护桌面(系统功能->本地维护桌面)或后台管理页面(菜单栏->附加->本地维护桌面入口)进入</span></div>", function() {
|
|
|
+ hrefHashChangeTimer = window.setInterval(listenHashChange, 200);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
});
|