2010年,招商银行石家庄分行落户燕赵大地,是招商银行在全国范围内设立的第36家一级分行。截至2022年12月末,招商银行石家庄分行共有1家二级分行、17家支行、1家私人银行中心,在岗员工680人。
成立以来,招商银行石家庄分行一直谨记招商银行“为中国贡献一家真正的商业银行”的使命,始终坚持以客户为中心,坚持最佳价值创造银行的战略方向,深入践行价值观和开放融合,切实加强“三大能力”建设,推进结构调整与模式转型,着力构建石家庄分行“马利克增长曲线”,改革创新转型发展取得较明显成效,目前已成为支持和促进河北省经济建设和社会发展的重要力量。
var branchCode = '0311'
jQuery(function () {
jQuery(".branch-news-notice-list").eq(0).show().siblings().hide();
jQuery(".branch-news-notice-title").eq(0).addClass("branch-news-notice-title-active");
jQuery(".branch-news-notice-title").hover(function () {
jQuery(this).addClass("branch-news-notice-title-active").siblings().removeClass("branch-news-notice-title-active");
jQuery(".branch-news-notice-list").eq(jQuery(this).index()).show().siblings().hide();
});
});
/*判断浏览器类型和版本*/
function BrowserCheck() {
var me = this;
me.version = me.getVersion();
}
var w3c = (document.getElementById) ? true : false;
var agt = navigator.userAgent.toLowerCase();
var ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1) && (agt.indexOf("omniweb") == -1));
function IeTrueBody() {
return (document.compatMode && document.compatMode != "BackCompat") ? document.documentElement : document.body;
}
function GetScrollTop() {
return ie ? IeTrueBody().scrollTop : window.pageYOffset;
}
BrowserCheck.prototype.getVersion = function () {
// 取得浏览器的userAgent字符串
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.indexOf('firefox') != -1) {
return "firefox";
}
else if (userAgent.indexOf('opr') != -1) {
return "opera";
}
else if (userAgent.indexOf('chrome') != -1) {
var ChromeReg = new RegExp('chrome/(\\d+\\.\\d+)');
ChromeReg.test(userAgent);
// 取正则表达式中第一个小括号里匹配到的值
var ChromeVersionNum = parseFloat(RegExp['$1']);
return "chrome|" + ChromeVersionNum;
}
else if (userAgent.indexOf('safari') != -1) {
return "safari";
}
else if (userAgent.indexOf("edge") > -1) {
return "edge";
}
else if (userAgent.indexOf("trident") > -1 && userAgent.indexOf("v:11.0") > -1) {
return 11;
}
else if (userAgent.indexOf('compatible') > -1 && userAgent.indexOf('msie')) {
var IEReg = new RegExp('msie (\\d+\\.\\d+);');
// 正则表达式匹配浏览器的userAgent字符串中MSIE后的数字部分,,这一步不可省略!!!
IEReg.test(userAgent);
// 取正则表达式中第一个小括号里匹配到的值
var IEVersionNum = parseFloat(RegExp['$1']);
if (IEVersionNum === 7) {
return 7;
} else if (IEVersionNum === 8) {
return 8;
} else if (IEVersionNum === 9) {
return 9;
} else if (IEVersionNum === 10) {
return 10;
} else {
return 6;
}
}
else {
return "unknown";
}
}
BrowserCheck.prototype.isLessAndEqualIE9 = function () {
if (!isNaN(this.version) && this.version <= 9) {
return true;
}
return false;
}
BrowserCheck.prototype.isLessAndEqualChrome57 = function () {
if (isNaN(this.version) && this.version.indexOf("chrome") > -1 && this.version.indexOf("|") > -1) {
if (parseFloat(this.version.split("|")[1]) < 58) {
return true;
}
}
return false;
}
BrowserCheck.prototype.showWin = function (content, width, height) {
if (!width) {
width = 400;
}
if (!height) {
height = 200;
}
var tips;
if (!content) {
// 北京分行单独提示
if (branchCode === '0010') {
tips = "
尊敬的各位客户:
我行正在进行官网主页升级改造,暂时无法通过原有“北京分行主页-快捷业务通道”进行部分功能的跳转。
您可点击此处跳转北京分行代发传输易界面进行登录;
点击此处跳转北京分行网上信用证。
如您之前已进行过以上网址收藏则不受影响。如有疑问请联系您的客户经理,对您带来的不便敬请谅解。
"
jQuery(".m_banner_video").html("");
jQuery("#videodiv").css("display", "none");
jQuery("#imgdiv").css("display", "block");
} else {
return;
}
}
//var eSrc = (document.all) ? window.event.srcElement : arguments[1];
var shield = document.createElement("DIV");
shield.id = "shield";
shield.style.position = "absolute";
shield.style.left = "0px";
shield.style.top = "0px";
shield.style.width = document.body.clientWidth + "px"; //"100%";
shield.style.height = document.body.scrollHeight + "px";
shield.style.background = "#333";
shield.style.textAlign = "center";
shield.style.zIndex = "10000";
shield.style.filter = "alpha(opacity=50)";
shield.style.opacity = 0.5;
var alertFram = document.createElement("DIV");
alertFram.id = "alertFram";
alertFram.style.position = "absolute";
alertFram.style.left = (document.body.clientWidth - width) / 2 + "px";
alertFram.style.top = "20%";
alertFram.style.marginLeft = "-0px";
var scrollTop = GetScrollTop();
alertFram.style.marginTop = -45 + scrollTop + "px";
alertFram.style.width = width + "px";
alertFram.style.height = height + "px";
alertFram.style.background = "#fff";
alertFram.style.textAlign = "center";
alertFram.style.lineHeight = "90%";
alertFram.style.zIndex = "10001";
strHtml = "
\n";
alertFram.innerHTML = strHtml;
document.body.appendChild(alertFram);
document.body.appendChild(shield);
window.doOk = function () {
//alertFram.style.display = "none";
//shield.style.display = "none";
document.body.removeChild(alertFram);
document.body.removeChild(shield);
//eSrc.focus();
document.body.onselectstart = function () { return true; }
document.body.oncontextmenu = function () { return true; }
}
//eSrc.blur();
document.body.onselectstart = function () { return false; }
document.body.oncontextmenu = function () { return false; }
window.onscroll = function () {
setTimeout(function () {
if (document.getElementById("alertFram")) {
var scrollTop = GetScrollTop();
document.getElementById("alertFram").style.marginTop = -45 + scrollTop + "px";
}
}, 50);
}
}
var browserCheck = new BrowserCheck();
browserCheck.showWin();