HTTP/1.1 200 OK
Set-Cookie: JSESSIONID=451DC46B34B653D7DEC00F349D894E5D; Path=/seeyon
Set-Cookie: loginPageURL="/main.do"; Version=1; Max-Age=86400; Expires=Fri, 22-Nov-2024 05:05:09 GMT; Path=/
Pragma: No-cache
Cache-Control: no-store
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: text/html;charset=utf-8
Content-Language: zh-CN
Transfer-Encoding: chunked
Vary: Accept-Encoding
Date: Thu, 21 Nov 2024 05:05:09 GMT
Connection: close
Server: Seeyon-Server/1.0
2000
<!DOCTYPE html>
<link href="/seeyon/common/images/A8/favicon.ico?V=V5_6SP1_2016-03-23" type="image/x-icon" rel="icon"/>
<link rel="stylesheet" href="/seeyon/common/all-min.css?V=V5_6SP1_2016-03-23">
<link rel="stylesheet" href="/seeyon/skin/default/skin.css?V=V5_6SP1_2016-03-23">
<link rel="stylesheet" href="/seeyon/common/css/dd.css?V=V5_6SP1_2016-03-23">
<link rel="stylesheet" href="/seeyon/common/js/orgIndex/token-input.css?V=V5_6SP1_2016-03-23" type="text/css" />
<script type="text/javascript">
var _ctxPath = '/seeyon', _ctxServer = 'http://<ip>:88/seeyon';
var _locale = 'zh_CN',_isDevelop = false,_sessionid = '451DC46B34B653D7DEC00F349D894E5D',_isModalDialog = false;
var _editionI18nSuffix = '';
var _resourceCode = "";
var seeyonProductId="1";
var systemfileUploadmaxsize="1048576";
</script>
<script type="text/javascript" src="/seeyon/i18n_zh_CN.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript" src="/seeyon/common/all-min.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript" src="/seeyon/common/js/ui/calendar/calendar-zh_CN.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript" src="/seeyon/main.do?method=headerjs&login=0"></script>
<script type="text/javascript">
var addinMenus = new Array();
$.ctx._currentPathId = 'main_index';
$.ctx._pageSize = 20;
//a6så±è½é®ä»¶,ç±äºseeyon.ui.peopleCrad-debug.jsä¸æ æ³ç´æ¥è·åSysFlagæä¸¾ï¼ é¡¾ææ¶å¨æ¤å®ä¹è¯¥åé,使ç¨è¡:66 ouyp-2015/07/17
$.ctx._emailNotShow = false;
$.ctx.fillmaps = null;
$.releaseOnunload();
</script>
<script type="text/javascript" src="/seeyon/common/js/orgIndex/jquery.tokeninput.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript" src="/seeyon/ajaxStub.js?v=1727315667620"></script>
<script type="text/javascript" src="/seeyon/main/common/js/jquery.qrcode.min.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript" src="/seeyon/main/common/js/qrcode-uuid.js?V=V5_6SP1_2016-03-23"></script>
<META HTTP-EQUIV="pragma" CONTENT="no-cache" />
<META HTTP-EQUIV="Cache-Control" CONTENT="no-store, must-revalidate" />
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT" />
<META HTTP-EQUIV="expires" CONTENT="0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script type="text/javascript">
var interval;
var sendFlag = false;
var wechatLoginManager=RemoteJsonService.extend({
jsonGateway : "/seeyon/ajax.do?method=ajaxAction&managerName=wechatLoginManager",
isLogin: function(){
return this.ajaxCall(arguments, "isLogin");
}
});
var ajaxWechatLoginManager = new wechatLoginManager();
function loginForWechat(){
var random = $("#random").val();
ajaxWechatLoginManager.isLogin(random,{
success : function(data) {
if(data != "loginError"){
$("#login_username").val(data);
//$("#login_password").val("123456");
$("#login_button").click();
} else {
sendFlag = true;
}
}
});
}
//轮询请求,防止后台阻塞
function intervalLogin(){
if(sendFlag){
sendFlag = false;
loginForWechat();
}
}
//二维码登陆
function changeLoginMode () {
$(".pwdBtn").click(function () {
clearInterval(interval);
$(this).hide();
$(".qrCode_area").hide();
$(".loginForm_area").removeClass("opacity80");
$(".qrCodeBtn").show();
$(".pwd_area").show();
$("#qrcode1 .qrcode").empty();
});
$(".qrCodeBtn").click(function () {
$("#login_error").hide();
$(this).hide();
$(".pwd_area").hide();
$(".loginForm_area").addClass("opacity80");
$(".pwdBtn").show();
$(".qrCode_area").show();
var date = new Date();
var dateNumber = date.getTime();
var random="seeyon-" + Math.uuid() + "-" + dateNumber;
var qrcodeRandom = "http://weixin.seeyon.com/mobilehelp.jsp?random=" + random;
$("#random").val(random);
//table方式进行图片渲染
if(typeof(isA6sLoginPage)=="undefined"){
$("#qrcode1 .qrcode").qrcode({
render: "table", //table方式
width: 57, //宽度
height: 57, //高度
text: utf16to8(qrcodeRandom) //任意内容
});
}else{
$("#qrcode1 .qrcode").qrcode({
render: "table", //table方式
width: 114, //宽度
height: 114, //高度
text: utf16to8(qrcodeRandom) //任意内容
});
};
//canvas方式进行图片渲染
//$("#qrcode .qrcode").qrcode(utf16to8(qrcodeRandom));
loginForWechat();
interval = setInterval("intervalLogin()", 1000);
});
$("#flashQrcode").click(function(){
$("#qrcode1 .qrcode").empty();
var date = new Date();
var dateNumber = date.getTime();
var random="seeyon-" + Math.uuid() + "-" + dateNumber;
var qrcodeRandom = "http://weixin.seeyon.com/mobilehelp.jsp?random=" + random;
$("#random").val(random);
//table方式进行图片渲染
if(typeof(isA6sLoginPage)=="undefined"){
$("#qrcode1 .qrcode").qrcode({
render: "table", //table方式
width: 57, //宽度
height: 57, //高度
text: utf16to8(qrcodeRandom) //任意内容
});
}else{
$("#qrcode1 .qrcode").qrcode({
render: "table", //table方式
width: 114, //宽度
height: 114, //高度
text: utf16to8(qrcodeRandom) //任意内容
});
};
//canvas方式进行图片渲染
//$("#qrcode .qrcode").qrcode(utf16to8(qrcodeRandom));
});
}
//识别中文,暂时未用,目前随机数不包含中文
function utf16to8(str) {
var out, i, len, c;
out = "";
len = str.length;
for (i = 0; i < len; i++) {
c = str.charCodeAt(i);
if ((c >= 0x0001) && (c <= 0x007F)) {
out += str.charAt(i);
} else if (c > 0x07FF) {
out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
} else {
out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
}
}
return out;
}
//NC Portal
try{
if(parent.frame_A8){
if("false" == "true"){
var ncPortalUrl = "";
var ncUrl= "";
if(ncPortalUrl!=null&&ncPortalUrl!=''){
window.location.href = ncPortalUrl+"/portal/logoutA8.jsp";
}else{
window.location.href = ncUrl+"/portal/logoutA8.jsp";
}
}
}
}catch(e){}
$.ctx.template = {"name":"登录页-单图片式","path":"default\/login.jsp","description":"单图片式,极简风格","sort":"1","updateTime":"2016-07-11 00:00","preset":1,"updateUser":"-7273032013234748168","cdefault":0,"thumbnail":"default\/thumbnail.png","id":"2676694155142778633","new":false,"extraMap":{}};
$.ctx.hotSpots = [{"name":"hotspot.name.note","type":0,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"note","hotspotvalue":"广州瓷妆协同管理软件","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System","tiling":0,"ext3":"0","ext1":"0","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"5776015883757240709","new":false,"extraMap":{}},{"name":"hotspot.name.newfeature","type":0,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"newfeature","hotspotvalue":"hide","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System","tiling":0,"ext3":"0","ext1":"1","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"-772925337385154428","new":false,"extraMap":{}},{"name":"hotspot.name.loginpic","type":1,"
2000
description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"contentbgi","hotspotvalue":"fileUpload.do?method=showRTE&type=image&fileId=-5397227997963008575","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System,Account","tiling":0,"ext3":"0","ext1":"2","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"7127491441241640433","new":false,"extraMap":{}},{"name":"hotspot.name.mainbgc","type":2,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"mainbgc","hotspotvalue":"#fafafa","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System,Account","tiling":0,"ext3":"0","ext1":"3","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"-4553912621698036926","new":false,"extraMap":{}},{"name":"hotspot.name.mainbgi","type":1,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"mainbgi","hotspotvalue":"default\/images\/main_bg.png","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System,Account","tiling":1,"ext3":"0","ext1":"4","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"5612724790002926973","new":false,"extraMap":{}}];
var loginResult = "";
$(function() {
$("#login_form").append("<input type='hidden' name='random' id='random' value='' />");
if(loginResult){
$("#login_error").html(loginResult);
$("#login_error").show();
}else{
$("#login_error").hide();
}
if(seeyonProductId == 7){
//如果是a6s
var localeCfg = [{"eleid":"login_locale","defaultValue":"zh_CN","options":{"zh_CN":"中文(简体)"}}];
} else {
var localeCfg = [{"eleid":"login_locale","defaultValue":"zh_CN","options":{"zh_CN":"中文(简体)","en":"English","zh_TW":"中文(繁體)"}}];
if(seeyonProductId == 3 || seeyonProductId == 4){
delete localeCfg[0].options.en;
}
}
$.fillOption(localeCfg);
/**
$("#login_locale").change(function() {
$("#login_locale").jsonSubmit({
action : _ctxPath + '/main.do?method=changeLocale'
});
});**/
var _dropdownObj =$.dropdown({
id:'login_locale',
onchange:function(){
$("#login_locale").jsonSubmit({
action : _ctxPath + '/main.do?method=changeLocale'+''
});
}
});
_dropdownObj.setValue(_locale);
$("#login_form").submit(function() {
//登陆请求发出后,按钮置灰
$("#login_button").attr("disabled","disabled");
//var _bodyWidth = document.documentElement.clientWidth;
//var _bodyHeight = document.documentElement.clientHeight;
var _screenWidth = window.screen.width;
var _screenHeight = window.screen.height;
var font_size = 12;
/*if(_bodyWidth <= 1024){
font_size = 12;
}else if(_bodyWidth <= 1600){
font_size = 14;
}else if(_bodyWidth <= 2500){
font_size = 16;
}else{
font_size = 18;
}*/
$("#login_form").append("<input type='hidden' name='fontSize' value='"+font_size+"' />").append("<input type='hidden' name='screenWidth' value='"+_screenWidth+"' />").append("<input type='hidden' name='screenHeight' value='"+_screenHeight+"' />");
var loginFlag = true;
if(loginCallback) {
if(!loginCallback())
loginFlag = false;
}
var hasPluginCA = false;
var caFactory = '';
if(hasPluginCA&&caFactory!=''){
if("koal"!="" && "Jit"!=""){
checkCaCert();
}
if("koal"!="" && isCa){
caSign();
}
}
;
return loginFlag;
});
$("#login_password").keydown(function(event){
if (event.keyCode==13) {
$("#login_button").click();
}
});
var enterSubmit = true;
$("#login_username").keydown(function(event){
if(event.keyCode == 229) return;
if(event.keyCode == 40)
enterSubmit = false;
if (event.keyCode==13) {
if(enterSubmit)
$("#login_button").click();
else
enterSubmit = true;
}
});
$("#login_button").keydown(function(event){
if (event.keyCode==13) {
$("#login_button").click();
}
});
$("#VerifyCode").keydown(function(event){
if (event.keyCode==13) {
$("#login_button").click();
}
});
if("true" == "false" && "Jit" == ""){
$("#login_form").append("<input type='hidden' id='signed_data' name='signed_data' value=''>")
.append("<input type='hidden' id='original_jsp' name='original_jsp' value=''>")
.append("<input type='hidden' id='RootCADN' name='RootCADN' value=''>");
}
/* if("false" == "true"){
$("#messageDiv").show();
$("#postDiv").hide();
$("#messageSpn1").text("应用服务器正在停止,请您稍候再登录 。");
$("#messageSpn2").text("管理员附言:");
$("#messageSpn3").text("当前人数:5");
}else if("" != ""){
$("#messageDiv").show();
$("#postDiv").hide();
$("#messageSpn1").text("当前已登录了一个用户,同一窗口中不能登录");
$("#messageSpn2").text(" 多个用户!");
$("#messageSpn3").html($("#butnFactory").html());
}else{
} */
// try{
// //chrome不支持模态对话框借口
// var ua = navigator.userAgent;
// var isChrome = ua.indexOf('Chrome') != -1;
// if(isChrome && !window.showModalDialog){
// $('#loginArea').hide();
// $("<div style='position:absolute;top:200px;right:100px;'>chrome最新浏览器需要设置组策略,点击<a class='padding_lr_5' href='"+_ctxPath+"/main/common/chrome-set.rar'>下载</a>设置计算机。</div>").appendTo($('body'));
// }
// }catch(e){}
if ($.browser.msie) {
if ($.browser.version <= 8) {
$(".username").css("background","#fff url(/seeyon/main/login/default/images/username.png?V=V5_6_2015_03_31) 15px 10px no-repeat");
$(".password").css("background","#fff url(/seeyon/main/login/default/images/password.png?V=V5_6_2015_03_31) 15px 10px no-repeat");
};
};
});
</script>
<link href="/seeyon/common/images/A8/favicon.ico" type="image/x-icon" rel="icon"/>
<html class="h100b overflow_login">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>广州瓷妆协同管理软件 V5.6SP1</title>
<script type="text/javascript" src="/seeyon/common/js/passwdcheck.js?V=V5_6SP1_2016-03-23"></script>
<script type="text/javascript">
var sendSMSCodeTime = 119;
function loginCallback(){
return true;
}
$(function() {
$.ctx.hotSpots = [{"name":"hotspot.name.note","type":0,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"note","hotspotvalue":"广州瓷妆协同管理软件","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System","tiling":0,"ext3":"0","ext1":"0","ext2":"0","ext9":null,"ext7":null,"ext8":null,"ext6":null,"templateid":"2676694155142778633","id":"5776015883757240709","new":false,"extraMap":{}},{"name":"hotspot.name.newfeature","type":0,"description":"","module":0,"display":1,"entityId":"-1730833917365171641","hotspotkey":"newfeature","hotspotvalue":"hide","ext10":null,"ext5":null,"ext4":"-1730833917365171641","entityLevel":"System","tiling":0,"ext3":"0","ext1":"1
{
"@category" : "datascan",
"@timestamp" : "2024-11-21T05:05:10.000Z",
"app" : {
"extract" : {
"domain" : [
"seeyon.com"
],
"hostname" : [
"weixin.seeyon.com"
],
"url" : [
"http://weixin.seeyon.com/mobilehelp.jsp?random="
]
},
"http" : {
"bodymd5" : "6a94511f7526f19a24bc9f1d68a6717e",
"bodymmh3" : 2003025834,
"component" : [
{
"productvendor" : "Oracle",
"product" : "Java"
}
],
"headermd5" : "30e678f3a8048a6f4e23b31de696de86",
"headermmh3" : 1531010381,
"title" : "\u5e7f\u5dde\u74f7\u5986\u534f\u540c\u7ba1\u7406\u8f6f\u4ef6 V5.6SP1"
},
"length" : 16378
},
"asn" : "AS17622",
"country" : "CN",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nSet-Cookie: JSESSIONID=451DC46B34B653D7DEC00F349D894E5D; Path=/seeyon\r\nSet-Cookie: loginPageURL=\"/main.do\"; Version=1; Max-Age=86400; Expires=Fri, 22-Nov-2024 05:05:09 GMT; Path=/\r\nPragma: No-cache\r\nCache-Control: no-store\r\nExpires: Thu, 01 Jan 1970 00:00:00 GMT\r\nContent-Type: text/html;charset=utf-8\r\nContent-Language: zh-CN\r\nTransfer-Encoding: chunked\r\nVary: Accept-Encoding\r\nDate: Thu, 21 Nov 2024 05:05:09 GMT\r\nConnection: close\r\nServer: Seeyon-Server/1.0\r\n\r\n2000\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!DOCTYPE html>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<link href=\"/seeyon/common/images/A8/favicon.ico?V=V5_6SP1_2016-03-23\" type=\"image/x-icon\" rel=\"icon\"/>\r\n<link rel=\"stylesheet\" href=\"/seeyon/common/all-min.css?V=V5_6SP1_2016-03-23\">\r\n\r\n\r\n <link rel=\"stylesheet\" href=\"/seeyon/skin/default/skin.css?V=V5_6SP1_2016-03-23\">\r\n\r\n<link rel=\"stylesheet\" href=\"/seeyon/common/css/dd.css?V=V5_6SP1_2016-03-23\">\r\n<link rel=\"stylesheet\" href=\"/seeyon/common/js/orgIndex/token-input.css?V=V5_6SP1_2016-03-23\" type=\"text/css\" />\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<script type=\"text/javascript\">\r\n var _ctxPath = '/seeyon', _ctxServer = 'http://<ip>:88/seeyon';\r\n var _locale = 'zh_CN',_isDevelop = false,_sessionid = '451DC46B34B653D7DEC00F349D894E5D',_isModalDialog = false;\r\n var _editionI18nSuffix = '';\r\n \r\n var _resourceCode = \"\";\r\n var seeyonProductId=\"1\";\r\n var systemfileUploadmaxsize=\"1048576\";\r\n</script>\r\n\r\n<script type=\"text/javascript\" src=\"/seeyon/i18n_zh_CN.js?V=V5_6SP1_2016-03-23\"></script>\r\n\r\n<script type=\"text/javascript\" src=\"/seeyon/common/all-min.js?V=V5_6SP1_2016-03-23\"></script>\r\n\r\n<script type=\"text/javascript\" src=\"/seeyon/common/js/ui/calendar/calendar-zh_CN.js?V=V5_6SP1_2016-03-23\"></script>\r\n\r\n<script type=\"text/javascript\" src=\"/seeyon/main.do?method=headerjs&login=0\"></script>\r\n<script type=\"text/javascript\">\r\n\r\nvar addinMenus = new Array();\r\n\r\n\r\n$.ctx._currentPathId = 'main_index';\r\n$.ctx._pageSize = 20;\r\n//a6s\u00e5\u00b1\u008f\u00e8\u0094\u00bd\u00e9\u0082\u00ae\u00e4\u00bb\u00b6,\u00e7\u0094\u00b1\u00e4\u00ba\u008eseeyon.ui.peopleCrad-debug.js\u00e4\u00b8\u00ad\u00e6\u0097\u00a0\u00e6\u00b3\u0095\u00e7\u009b\u00b4\u00e6\u008e\u00a5\u00e8\u008e\u00b7\u00e5\u008f\u0096SysFlag\u00e6\u009e\u009a\u00e4\u00b8\u00be\u00ef\u00bc\u008c \u00e9\u00a1\u00be\u00e6\u009a\u0082\u00e6\u0097\u00b6\u00e5\u009c\u00a8\u00e6\u00ad\u00a4\u00e5\u00ae\u009a\u00e4\u00b9\u0089\u00e8\u00af\u00a5\u00e5\u008f\u0098\u00e9\u0087\u008f,\u00e4\u00bd\u00bf\u00e7\u0094\u00a8\u00e8\u00a1\u008c:66 ouyp-2015/07/17\r\n$.ctx._emailNotShow = false; \r\n$.ctx.fillmaps = null;\r\n\r\n$.releaseOnunload();\r\n</script>\r\n<script type=\"text/javascript\" src=\"/seeyon/common/js/orgIndex/jquery.tokeninput.js?V=V5_6SP1_2016-03-23\"></script>\r\n<script type=\"text/javascript\" src=\"/seeyon/ajaxStub.js?v=1727315667620\"></script>\r\n\r\n\r\n\r\n<script type=\"text/javascript\" src=\"/seeyon/main/common/js/jquery.qrcode.min.js?V=V5_6SP1_2016-03-23\"></script>\r\n<script type=\"text/javascript\" src=\"/seeyon/main/common/js/qrcode-uuid.js?V=V5_6SP1_2016-03-23\"></script>\r\n\r\n<META HTTP-EQUIV=\"pragma\" CONTENT=\"no-cache\" /> \r\n<META HTTP-EQUIV=\"Cache-Control\" CONTENT=\"no-store, must-revalidate\" /> \r\n<META HTTP-EQUIV=\"expires\" CONTENT=\"Wed, 26 Feb 1997 08:21:57 GMT\" /> \r\n<META HTTP-EQUIV=\"expires\" CONTENT=\"0\" />\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<script type=\"text/javascript\">\r\n\r\n\tvar interval;\r\n\tvar sendFlag = false;\r\n\tvar wechatLoginManager=RemoteJsonService.extend({\r\n\t\tjsonGateway : \"/seeyon/ajax.do?method=ajaxAction&managerName=wechatLoginManager\",\r\n\t\tisLogin: function(){\r\n\t \treturn this.ajaxCall(arguments, \"isLogin\");\r\n\t }\r\n\t});\r\n\t\t\r\n\tvar ajaxWechatLoginManager = new wechatLoginManager();\r\n\tfunction loginForWechat(){\r\n\t\tvar random = $(\"#random\").val();\r\n\t\tajaxWechatLoginManager.isLogin(random,{\r\n\t\t\tsuccess : function(data) {\r\n\t\t\t\tif(data != \"loginError\"){\r\n\t\t\t\t\t$(\"#login_username\").val(data);\r\n\t\t\t\t\t//$(\"#login_password\").val(\"123456\");\r\n\t\t\t\t\t$(\"#login_button\").click();\r\n\t\t\t\t} else {\r\n\t\t\t\t\tsendFlag = true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\t//\u8f6e\u8be2\u8bf7\u6c42\uff0c\u9632\u6b62\u540e\u53f0\u963b\u585e\r\n\tfunction intervalLogin(){\r\n\t\tif(sendFlag){\r\n\t\t\tsendFlag = false;\r\n\t\t\tloginForWechat();\r\n\t\t}\r\n\t}\r\n\r\n\t//\u4e8c\u7ef4\u7801\u767b\u9646\r\n\tfunction changeLoginMode () {\r\n\t\t$(\".pwdBtn\").click(function () {\r\n\t\t\tclearInterval(interval);\r\n\t\t\t$(this).hide();\r\n\t\t\t$(\".qrCode_area\").hide();\r\n\t\t\t$(\".loginForm_area\").removeClass(\"opacity80\");\r\n\t\t\t$(\".qrCodeBtn\").show();\r\n\t\t\t$(\".pwd_area\").show();\r\n\t\t\t$(\"#qrcode1 .qrcode\").empty();\r\n\t\t});\r\n\t\t$(\".qrCodeBtn\").click(function () {\r\n\t\t\t$(\"#login_error\").hide();\r\n\t\t\t$(this).hide();\r\n\t\t\t$(\".pwd_area\").hide();\r\n\t\t\t$(\".loginForm_area\").addClass(\"opacity80\");\r\n\t\t\t$(\".pwdBtn\").show();\r\n\t\t\t$(\".qrCode_area\").show();\r\n\t\t\tvar date = new Date();\r\n\t\t\tvar dateNumber = date.getTime();\r\n\t\t\tvar random=\"seeyon-\" + Math.uuid() + \"-\" + dateNumber;\r\n\t\t\tvar qrcodeRandom = \"http://weixin.seeyon.com/mobilehelp.jsp?random=\" + random;\r\n\t\t\t$(\"#random\").val(random);\r\n\t\t\t//table\u65b9\u5f0f\u8fdb\u884c\u56fe\u7247\u6e32\u67d3\r\n if(typeof(isA6sLoginPage)==\"undefined\"){\r\n $(\"#qrcode1 .qrcode\").qrcode({\r\n render: \"table\", //table\u65b9\u5f0f\r\n width: 57, //\u5bbd\u5ea6\r\n height: 57, //\u9ad8\u5ea6\r\n text: utf16to8(qrcodeRandom) //\u4efb\u610f\u5185\u5bb9\r\n });\r\n }else{\r\n $(\"#qrcode1 .qrcode\").qrcode({\r\n render: \"table\", //table\u65b9\u5f0f\r\n width: 114, //\u5bbd\u5ea6\r\n height: 114, //\u9ad8\u5ea6\r\n text: utf16to8(qrcodeRandom) //\u4efb\u610f\u5185\u5bb9\r\n });\r\n };\r\n\t\t\t\r\n\t\t\t//canvas\u65b9\u5f0f\u8fdb\u884c\u56fe\u7247\u6e32\u67d3\r\n\t\t\t//$(\"#qrcode .qrcode\").qrcode(utf16to8(qrcodeRandom));\r\n\t\t\tloginForWechat();\r\n\t\t\tinterval = setInterval(\"intervalLogin()\", 1000);\r\n\t\t});\r\n\t\t$(\"#flashQrcode\").click(function(){\r\n\t\t\t$(\"#qrcode1 .qrcode\").empty();\r\n\t\t\tvar date = new Date();\r\n\t\t\tvar dateNumber = date.getTime();\r\n\t\t\tvar random=\"seeyon-\" + Math.uuid() + \"-\" + dateNumber;\r\n\t\t\tvar qrcodeRandom = \"http://weixin.seeyon.com/mobilehelp.jsp?random=\" + random;\r\n\t\t\t$(\"#random\").val(random);\r\n\t\t\t//table\u65b9\u5f0f\u8fdb\u884c\u56fe\u7247\u6e32\u67d3\r\n\t\t\tif(typeof(isA6sLoginPage)==\"undefined\"){\r\n $(\"#qrcode1 .qrcode\").qrcode({\r\n render: \"table\", //table\u65b9\u5f0f\r\n width: 57, //\u5bbd\u5ea6\r\n height: 57, //\u9ad8\u5ea6\r\n text: utf16to8(qrcodeRandom) //\u4efb\u610f\u5185\u5bb9\r\n });\r\n }else{\r\n $(\"#qrcode1 .qrcode\").qrcode({\r\n render: \"table\", //table\u65b9\u5f0f\r\n width: 114, //\u5bbd\u5ea6\r\n height: 114, //\u9ad8\u5ea6\r\n text: utf16to8(qrcodeRandom) //\u4efb\u610f\u5185\u5bb9\r\n });\r\n };\r\n\t\t\t//canvas\u65b9\u5f0f\u8fdb\u884c\u56fe\u7247\u6e32\u67d3\r\n\t\t\t//$(\"#qrcode .qrcode\").qrcode(utf16to8(qrcodeRandom));\r\n\t\t});\r\n\t}\r\n\t\r\n\t//\u8bc6\u522b\u4e2d\u6587\uff0c\u6682\u65f6\u672a\u7528\uff0c\u76ee\u524d\u968f\u673a\u6570\u4e0d\u5305\u542b\u4e2d\u6587\r\n\tfunction utf16to8(str) {\r\n var out, i, len, c;\r\n out = \"\";\r\n len = str.length;\r\n for (i = 0; i < len; i++) {\r\n c = str.charCodeAt(i);\r\n if ((c >= 0x0001) && (c <= 0x007F)) {\r\n out += str.charAt(i);\r\n } else if (c > 0x07FF) {\r\n out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));\r\n out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));\r\n out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));\r\n } else {\r\n out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));\r\n out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));\r\n }\r\n }\r\n return out;\r\n }\r\n\r\n\t//NC Portal\r\n\ttry{\r\n\t\tif(parent.frame_A8){\r\n\t\t\tif(\"false\" == \"true\"){\t\t\r\n\t\t\t var ncPortalUrl = \"\";\r\n\t\t\t var ncUrl= \"\";\r\n\t\t\t if(ncPortalUrl!=null&&ncPortalUrl!=''){\r\n\t\t\t window.location.href = ncPortalUrl+\"/portal/logoutA8.jsp\";\r\n\t\t\t }else{\r\n\t\t\t window.location.href = ncUrl+\"/portal/logoutA8.jsp\";\r\n\t\t\t }\r\n\t\t\t}\t\r\n\t\t}\r\n\t}catch(e){}\r\n\t\r\n $.ctx.template = {\"name\":\"\u767b\u5f55\u9875-\u5355\u56fe\u7247\u5f0f\",\"path\":\"default\\/login.jsp\",\"description\":\"\u5355\u56fe\u7247\u5f0f\uff0c\u6781\u7b80\u98ce\u683c\",\"sort\":\"1\",\"updateTime\":\"2016-07-11 00:00\",\"preset\":1,\"updateUser\":\"-7273032013234748168\",\"cdefault\":0,\"thumbnail\":\"default\\/thumbnail.png\",\"id\":\"2676694155142778633\",\"new\":false,\"extraMap\":{}};\r\n $.ctx.hotSpots = [{\"name\":\"hotspot.name.note\",\"type\":0,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"note\",\"hotspotvalue\":\"\u5e7f\u5dde\u74f7\u5986\u534f\u540c\u7ba1\u7406\u8f6f\u4ef6\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"0\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"5776015883757240709\",\"new\":false,\"extraMap\":{}},{\"name\":\"hotspot.name.newfeature\",\"type\":0,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"newfeature\",\"hotspotvalue\":\"hide\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"1\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"-772925337385154428\",\"new\":false,\"extraMap\":{}},{\"name\":\"hotspot.name.loginpic\",\"type\":1,\"\r\n2000\r\ndescription\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"contentbgi\",\"hotspotvalue\":\"fileUpload.do?method=showRTE&type=image&fileId=-5397227997963008575\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System,Account\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"2\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"7127491441241640433\",\"new\":false,\"extraMap\":{}},{\"name\":\"hotspot.name.mainbgc\",\"type\":2,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"mainbgc\",\"hotspotvalue\":\"#fafafa\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System,Account\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"3\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"-4553912621698036926\",\"new\":false,\"extraMap\":{}},{\"name\":\"hotspot.name.mainbgi\",\"type\":1,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"mainbgi\",\"hotspotvalue\":\"default\\/images\\/main_bg.png\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System,Account\",\"tiling\":1,\"ext3\":\"0\",\"ext1\":\"4\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"5612724790002926973\",\"new\":false,\"extraMap\":{}}];\r\n var loginResult = \"\";\r\n $(function() {\r\n\t $(\"#login_form\").append(\"<input type='hidden' name='random' id='random' value='' />\");\r\n\t \r\n if(loginResult){\r\n $(\"#login_error\").html(loginResult);\r\n $(\"#login_error\").show();\r\n }else{\r\n $(\"#login_error\").hide();\r\n }\r\n if(seeyonProductId == 7){\r\n //\u5982\u679c\u662fa6s\r\n var localeCfg = [{\"eleid\":\"login_locale\",\"defaultValue\":\"zh_CN\",\"options\":{\"zh_CN\":\"\u4e2d\u6587\uff08\u7b80\u4f53\uff09\"}}];\r\n } else {\r\n var localeCfg = [{\"eleid\":\"login_locale\",\"defaultValue\":\"zh_CN\",\"options\":{\"zh_CN\":\"\u4e2d\u6587\uff08\u7b80\u4f53\uff09\",\"en\":\"English\",\"zh_TW\":\"\u4e2d\u6587\uff08\u7e41\u9ad4\uff09\"}}];\r\n if(seeyonProductId == 3 || seeyonProductId == 4){\r\n delete localeCfg[0].options.en;\r\n }\r\n }\r\n $.fillOption(localeCfg);\r\n\r\n/**\r\n $(\"#login_locale\").change(function() {\r\n $(\"#login_locale\").jsonSubmit({\r\n action : _ctxPath + '/main.do?method=changeLocale'\r\n });\r\n });**/\r\n\r\n var _dropdownObj =$.dropdown({\r\n id:'login_locale',\r\n onchange:function(){\r\n $(\"#login_locale\").jsonSubmit({\r\n action : _ctxPath + '/main.do?method=changeLocale'+''\r\n });\r\n }\r\n });\r\n _dropdownObj.setValue(_locale);\r\n\t\r\n $(\"#login_form\").submit(function() {\r\n //\u767b\u9646\u8bf7\u6c42\u53d1\u51fa\u540e\uff0c\u6309\u94ae\u7f6e\u7070\r\n $(\"#login_button\").attr(\"disabled\",\"disabled\");\r\n //var _bodyWidth = document.documentElement.clientWidth;\r\n //var _bodyHeight = document.documentElement.clientHeight;\r\n var _screenWidth = window.screen.width;\r\n var _screenHeight = window.screen.height;\r\n var font_size = 12;\r\n\r\n /*if(_bodyWidth <= 1024){\r\n \t font_size = 12;\r\n }else if(_bodyWidth <= 1600){\r\n \t font_size = 14;\r\n }else if(_bodyWidth <= 2500){\r\n \t font_size = 16;\r\n }else{\r\n \t font_size = 18;\r\n }*/\r\n \r\n $(\"#login_form\").append(\"<input type='hidden' name='fontSize' value='\"+font_size+\"' />\").append(\"<input type='hidden' name='screenWidth' value='\"+_screenWidth+\"' />\").append(\"<input type='hidden' name='screenHeight' value='\"+_screenHeight+\"' />\");\r\n \r\n var loginFlag = true;\r\n if(loginCallback) {\r\n if(!loginCallback())\r\n loginFlag = false;\r\n }\r\n var hasPluginCA = false;\r\n var caFactory = '';\r\n if(hasPluginCA&&caFactory!=''){\r\n if(\"koal\"!=\"\" && \"Jit\"!=\"\"){\r\n checkCaCert();\r\n }\r\n if(\"koal\"!=\"\" && isCa){\r\n caSign();\r\n }\r\n }\r\n ;\r\n\r\n return loginFlag;\r\n });\r\n \r\n $(\"#login_password\").keydown(function(event){\r\n \tif (event.keyCode==13) {\r\n \t\t$(\"#login_button\").click();\r\n\t\t}\r\n });\r\n\r\n var enterSubmit = true;\r\n $(\"#login_username\").keydown(function(event){\r\n if(event.keyCode == 229) return;\r\n if(event.keyCode == 40)\r\n enterSubmit = false;\r\n\t\t if (event.keyCode==13) {\r\n\t\t if(enterSubmit)\r\n\t\t\t $(\"#login_button\").click();\r\n\t\t else\r\n\t\t enterSubmit = true;\r\n\t\t }\r\n });\r\n\r\n $(\"#login_button\").keydown(function(event){\r\n \tif (event.keyCode==13) {\r\n \t\t$(\"#login_button\").click();\r\n\t\t}\r\n });\r\n $(\"#VerifyCode\").keydown(function(event){\r\n if (event.keyCode==13) {\r\n $(\"#login_button\").click();\r\n }\r\n });\r\n if(\"true\" == \"false\" && \"Jit\" == \"\"){\r\n \t$(\"#login_form\").append(\"<input type='hidden' id='signed_data' name='signed_data' value=''>\")\r\n\t\t\t \t\t.append(\"<input type='hidden' id='original_jsp' name='original_jsp' value=''>\")\r\n\t\t\t \t\t.append(\"<input type='hidden' id='RootCADN' name='RootCADN' value=''>\");\r\n }\r\n /* if(\"false\" == \"true\"){\r\n \t$(\"#messageDiv\").show();\r\n \t$(\"#postDiv\").hide();\r\n \t$(\"#messageSpn1\").text(\"\u5e94\u7528\u670d\u52a1\u5668\u6b63\u5728\u505c\u6b62\uff0c\u8bf7\u60a8\u7a0d\u5019\u518d\u767b\u5f55 \u3002\");\r\n \t$(\"#messageSpn2\").text(\"\u7ba1\u7406\u5458\u9644\u8a00:\");\r\n \t$(\"#messageSpn3\").text(\"\u5f53\u524d\u4eba\u6570:5\");\r\n }else if(\"\" != \"\"){\r\n \t$(\"#messageDiv\").show();\r\n \t$(\"#postDiv\").hide();\r\n \t$(\"#messageSpn1\").text(\"\u5f53\u524d\u5df2\u767b\u5f55\u4e86\u4e00\u4e2a\u7528\u6237\uff0c\u540c\u4e00\u7a97\u53e3\u4e2d\u4e0d\u80fd\u767b\u5f55\");\r\n \t$(\"#messageSpn2\").text(\" \t\t\t\t\u591a\u4e2a\u7528\u6237\uff01\");\r\n \t$(\"#messageSpn3\").html($(\"#butnFactory\").html());\r\n }else{\r\n \t\r\n } */\r\n\t\r\n\t// try{\r\n // \t//chrome\u4e0d\u652f\u6301\u6a21\u6001\u5bf9\u8bdd\u6846\u501f\u53e3\r\n // \tvar ua = navigator.userAgent;\r\n // \tvar isChrome = ua.indexOf('Chrome') != -1;\r\n // \tif(isChrome && !window.showModalDialog){\r\n // \t\t$('#loginArea').hide();\r\n // \t\t$(\"<div style='position:absolute;top:200px;right:100px;'>chrome\u6700\u65b0\u6d4f\u89c8\u5668\u9700\u8981\u8bbe\u7f6e\u7ec4\u7b56\u7565\uff0c\u70b9\u51fb<a class='padding_lr_5' href='\"+_ctxPath+\"/main/common/chrome-set.rar'>\u4e0b\u8f7d</a>\u8bbe\u7f6e\u8ba1\u7b97\u673a\u3002</div>\").appendTo($('body'));\r\n // \t}\r\n\t// }catch(e){}\r\n\tif ($.browser.msie) {\r\n\t\tif ($.browser.version <= 8) {\r\n\t\t\t$(\".username\").css(\"background\",\"#fff url(/seeyon/main/login/default/images/username.png?V=V5_6_2015_03_31) 15px 10px no-repeat\");\r\n\t\t\t$(\".password\").css(\"background\",\"#fff url(/seeyon/main/login/default/images/password.png?V=V5_6_2015_03_31) 15px 10px no-repeat\");\r\n\t\t};\r\n\t};\r\n });\r\n</script>\r\n<link href=\"/seeyon/common/images/A8/favicon.ico\" type=\"image/x-icon\" rel=\"icon\"/>\r\n\r\n<html class=\"h100b overflow_login\">\r\n<head>\r\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n <title>\u5e7f\u5dde\u74f7\u5986\u534f\u540c\u7ba1\u7406\u8f6f\u4ef6 V5.6SP1</title>\r\n <script type=\"text/javascript\" src=\"/seeyon/common/js/passwdcheck.js?V=V5_6SP1_2016-03-23\"></script>\r\n <script type=\"text/javascript\">\r\n var sendSMSCodeTime = 119;\r\n function loginCallback(){\r\n return true;\r\n }\r\n $(function() {\r\n $.ctx.hotSpots = [{\"name\":\"hotspot.name.note\",\"type\":0,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"note\",\"hotspotvalue\":\"\u5e7f\u5dde\u74f7\u5986\u534f\u540c\u7ba1\u7406\u8f6f\u4ef6\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"0\",\"ext2\":\"0\",\"ext9\":null,\"ext7\":null,\"ext8\":null,\"ext6\":null,\"templateid\":\"2676694155142778633\",\"id\":\"5776015883757240709\",\"new\":false,\"extraMap\":{}},{\"name\":\"hotspot.name.newfeature\",\"type\":0,\"description\":\"\",\"module\":0,\"display\":1,\"entityId\":\"-1730833917365171641\",\"hotspotkey\":\"newfeature\",\"hotspotvalue\":\"hide\",\"ext10\":null,\"ext5\":null,\"ext4\":\"-1730833917365171641\",\"entityLevel\":\"System\",\"tiling\":0,\"ext3\":\"0\",\"ext1\":\"1",
"datamd5" : "75195d668c8e7eb05edc5d6d04139399",
"datammh3" : 1043544945,
"device" : {
"class" : "<enterprise field>: device.class"
},
"forward" : "211.97.2.6",
"geolocus" : {
"asn" : "AS17622",
"continent" : "AS",
"continentname" : "Asia",
"country" : "CN",
"countryname" : "China",
"domain" : [
"chinaunicom.cn",
"cnnic.cn"
],
"isineu" : "false",
"latitude" : "35.86166",
"location" : "35.86166,104.195397",
"longitude" : "104.195397",
"netname" : "GuangZhou-UNICOM",
"organization" : "China United Network Communications Corporation Limited",
"subnet" : "211.97.0.0/19"
},
"hostname" : [
"211.97.2.6"
],
"ip" : "211.97.2.6",
"ipv6" : "false",
"latitude" : "34.7732",
"location" : "34.7732,113.7220",
"longitude" : "113.7220",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "China Unicom Guangzhou network",
"port" : 88,
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"seen_date" : "2024-11-21",
"source" : "datascan::redirect::1",
"status" : 200,
"subnet" : "211.97.0.0/19",
"tag" : "<enterprise field>: tag",
"tls" : "false",
"transport" : "tcp",
"url" : "/seeyon/index.jsp"
}