招商银行呼和浩特分行自2007年9月19日正式开业以来,坚持效益、质量、规模协调发展,依托体制、机制、科技、管理、人才和品牌优势,稳健规范经营,努力开拓市场,业务全面均衡发展,综合竞争实力明显增强,在自治区树立起“科技领先、管理先进、服务一流、信誉卓著”的良好社会形象,走出了具有分行特色的发展之道。
截至2022年12月末,招商银行呼和浩特分行已在呼和浩特、包头、鄂尔多斯、呼伦贝尔等地设有营业机构,辖内3家二级分行、24家支行级机构,业务范围覆盖全区12个盟市。多次荣膺“文明规范服务示范单位”、“百姓满意品牌”等称号。
var branchCode = '0471'
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();