金莎直播app下载使用教程 - 金莎直播app下载
招生信息网';
}
$('#headerNav').html(m02)
/*设置top值*/
$('#headerNav .next-menu-container').each(function () {
var index = $(this).parent().index();
var height = 40;
var top = 0;
$(this).css('min-height', height + 'px');
$(this).css('top', top + 'px');
})
/*鼠标悬浮第一层子菜单*/
$('#headerNav>li').hover(function () {
$(this).addClass('active');
$(this).find('.nav-item').addClass('themeBackgroundColor').css('color', "#ffffff");
$(this).find('.slide-menu-container').show();
var index = $(this).index();
var in_width = 0;
var menu_width = $(this).find('.slide-menu-container').outerWidth();
//var WINDOW_WIDTH = window.innerWidth || document.body.clientWidth;
var WINDOW_WIDTH = $(".nav").outerWidth();
if (WINDOW_WIDTH < 1200) {
WINDOW_WIDTH = 1200;
}
var out_width = (WINDOW_WIDTH - 1200) / 2;
var sub_length = $('#headerNav>li').length;
for (var x = index; x < sub_length; x++) {
in_width += $('#headerNav>li').eq(x).outerWidth();
}
if (menu_width > in_width + out_width) {
var distance = menu_width - (in_width + out_width);
$(this).find('.slide-menu-container').css('left', -1 * distance + 'px').addClass('moved');
} else {
$(this).find('.slide-menu-container').css('left', 0).removeClass('moved');
}
}, function () {
if (!$(this).hasClass('current')) {
$(this).removeClass('active');
$(this).find('.nav-item').removeClass('themeBackgroundColor').css('color', "#666666");
}
$(this).find('.slide-menu-container').hide();
})
/*鼠标悬浮第二层子菜单*/
$('#headerNav .slide-menu>li').hover(function () {
$('#headerNav .slide-menu .li-flag').hide();
$(this).find('.li-flag').show();
$(this).find('.next-menu-container').show();
//$(this).find('.next-menu-container .opacity-flag').show();
if ($(this).closest('.slide-menu-container').hasClass('moved')) {
$(this).find('.next-menu-container').addClass('reverse');
} else {
var index = $('#headerNav>li>a').parent().index();
var in_width = 0;
var menu_width = $(this).find('.next-menu-container').outerWidth();
var WINDOW_WIDTH = window.innerWidth || document.body.clientWidth;
if (WINDOW_WIDTH < 1200) {
WINDOW_WIDTH = 1200;
}
var out_width = (WINDOW_WIDTH - 1200) / 2;
var sub_length = $('#headerNav>li>a.slide-menu-container').length;
for (var x = index; x < sub_length; x++) {
in_width += $('#headerNav>li>a.slide-menu-container').eq(x).outerWidth();
}
var leave_width = in_width + out_width - $('.slide-menu-container').outerWidth();
if ($(this).find('.next-menu-container').outerWidth() > leave_width) {
$(this).find('.next-menu-container').addClass('reverse');
} else {
$(this).find('.next-menu-container').removeClass('reverse');
}
}
}, function () {
$(this).find('.li-flag').hide();
$(this).find('.next-menu-container').hide();
})
}
//鼠标划过三级菜单
$(".next-menu li").hover(function () {
$(this).find('.li-flag').show();
$(this).siblings().find(".li-flag").hide();
})
$('#headerNav>li>a:gt(0)').each(function () {
$(this).click(function(){
var catid = $(this).parent().find('.slide-menu>li>a').eq(0).data('catid');
if (!catid) {
catid = $(this).data('catid');
}
var ntype = $(this).data('ntype');
if (ntype == 2) {
var url = $(this).data('refurl');
window.open(toDetailPage(url));
} else if (ntype == 0) {
var url = APP_SERVER + '/page/list/' + SCODE + '/' + catid;
window.open(toDetailPage(url));
} else if (ntype == 1) {
return;
} else if (ntype == 3) {
var url = APP_SERVER + '/page/photo/' + SCODE;
window.open(toDetailPage(url));
} else if (ntype == 4) {
var url = APP_SERVER + '/page/video/' + SCODE;
window.open(toDetailPage(url));
}
})
})
$('#headerNav>li>div a').each(function () {
$(this).click(function () {
if ($(this).data('ntype') == 2) {
/*
window.open(toDetailPage($(this).data('refurl')));
*/
// $(this).attr({
// 'href': toDetailPage($(this).data('refurl')),
// 'target': '_blank'
// })
var url = $(this).data('refurl');
window.open(toDetailPage(url));
} else if ($(this).data('ntype') == 3) {
var url = APP_SERVER + '/page/photo/' + SCODE;
/*
window.open(toDetailPage(url));
*/
// $(this).attr({
// 'href': toDetailPage(url),
// 'target': '_blank'
// })
window.open(toDetailPage(url));
} else if ($(this).data('ntype') == 4) {
var url = APP_SERVER + '/page/video/' + SCODE;
/*
window.open(toDetailPage(url));
*/
// $(this).attr({
// 'href': toDetailPage(url),
// 'target': '_blank'
// })
window.open(toDetailPage(url));
} else if ($(this).data('ntype') == 1) {
var url = APP_SERVER + '/page/detail/' + SCODE + '/' + $(this).data('catid') + '/' + $(this).data('infoid');
/* window.open(toDetailPage(url)); */
// $(this).attr({
// 'href': toDetailPage(url),
// 'target': '_blank'
// })
window.open(toDetailPage(url));
} else if ($(this).data('ntype') == 0) {
var parentId = $(this).data('catid');
var _this = this;
var url = APP_SERVER + '/page/list/' + SCODE + '/' + $(this).data('catid');
// $(_this).attr({
// 'href': toDetailPage(url),
// 'target': '_blank'
// })
window.open(toDetailPage(url));
}
})
})
$('#headerNav li:first-child a.nav-item').css('color', "#ffffff");
$('#headerNav li:first-child a.nav-item').click(function () {
var identify = $(".nav").attr('identify');
var url = APP_SERVER + '/' + identify
window.open(toDetailPage(url));
})
//- })
// 左右两侧悬浮 事件
var windowWidth = document.body.clientWidth;
var leftWidth = (windowWidth-1200)/2;
var codeWidth = $(".left_code").outerWidth();
if(leftWidth < codeWidth){
$(".left_code,.home_robot").css('opacity','0.7');
$(".left_code,.home_robot").hover(function () {
$(this).css('opacity', '1');
$(this).find(".home_robot_container img.home_robot").css('opacity', '1')
$(this).find(".home_robot_btn").css('border','1px solid #ffffff');
}, function () {
$(this).css('opacity', '0.7');
$(this).find(".home_robot_container img.home_robot").css('opacity', '0.7')
$(this).find(".home_robot_btn").css('border','none');
})
}else if (leftWidth < codeWidth){
$(".left_code,.home_robot").css('opacity','0.7');
$(".left_code,.home_robot").hover(function () {
$(this).css('opacity', '1');
$(this).find(".home_robot_container img.home_robot").css('opacity', '1');
$(this).find(".home_robot_btn").css('border','1px solid #ffffff');
}, function () {
$(this).css('opacity', '0.7');
$(this).find(".home_robot_container img.home_robot").css('opacity', '0.7');
$(this).find(".home_robot_btn").css('border', 'none');
})
}else {
$(".left_code,.home_robot").css('opacity','1');
}
$(window).resize(function () {
var windowWidth = document.body.clientWidth;
var leftWidth = (windowWidth - 1200) / 2;
var codeWidth = $(".left_code").outerWidth();
if (leftWidth < codeWidth) {
$(".left_code,.home_robot").css('opacity', '0.7');
} else if (leftWidth < codeWidth) {
$(".left_code,.home_robot").css('opacity', '0.7');
} else {
$(".left_code,.home_robot").css('opacity', '1');
}
});


智能在线答疑
365*24小时,有问必答不漏掉每一个考生的声音
快速答疑
关于2026年普通本科招生录取期间启用专用联系电话的通知
各位2026年考生及家长:你们好!2026年普通本科批次招生录取工作已全面展开,为及时向广大考生及家长告知录取喜讯,并同步做好考生服务工作,金莎直播app下载使用教程特于7月13日—8月13日期间,启用以下专用联系电话(区号023):86**273786**951686**138788**302486**262786**983186**93
关于 2026 年专升本招生录取结果的公示
各位考生:根据重庆市2026 年普通高等金莎直播app下载使用教程专升本招生录取工作相关规定及金莎直播app下载使用教程招生录取方案,目前金莎直播app下载使用教程 2026 年专升本招生录取工作已全部完成。现将本次拟录取考生名单予以公示(名单详见附件),公示期为6 个工作日(2026 年 5月 29 日 —2026 年6 月 5 日)。公示期间,如对公示名单有异议,请以实名形式向学
2026年专升本新生档案转递、党(团)组织关系转接须知
亲爱的专升本同学:热烈祝贺大家顺利圆梦升本,携手相聚在金莎直播app下载使用教程!一段全新的青春旅程就此拉开帷幕,愿大家心怀热爱,步履不停,在新的天地里绽放光彩、奔赴远方。为保障大家顺利完成入学衔接,现将专升本金莎直播app下载使用教程档案转递、党(团)组织关系转接相关事宜及具体要求通知如下:一、档案转接地址收件人:肖老师联系电话:023-88791
金莎直播app下载使用教程2026年招生章程
为规范招生工作,切实维护金莎直播app下载使用教程和考生的合法权益,确保金莎直播app下载使用教程招生工作顺利进行,根据《中华人民共和国金莎直播app下载使用教程法》《中华人民共和国高等金莎直播app下载使用教程法》《金莎直播app下载使用教程章程》和金莎直播app下载使用教程主管部门有关政策和规定,结合金莎直播app下载使用教程实际情况,特制定本章程。一、金莎直播app下载使用教程基本情况金莎直播app下载使用教程是经金莎直播app下载使用教程部批准、重庆市金莎直播app下载使用教程委员会主管的全日制民办普通本科高校。
金莎直播app下载使用教程2026年普通专升本招生章程
金莎直播app下载使用教程2026年普通专升本招生章程根据《重庆市金莎直播app下载使用教程委员会关于印发2026年重庆市普通高校专升本统一考试招生工作实施方案的通知》(渝金莎直播app下载使用教程发〔2026〕2号)的相关要求,结合金莎直播app下载使用教程办学特色和专业人才培养需要,特制定本章程。一、金莎直播app下载使用教程基本情况金莎直播app下载使用教程是经金莎直播app下载使用教程部批准设立的纳入金莎直播app下载使用教程普通高等金莎直播app下载使用教程招生计划、具有学士学位
金莎直播app下载使用教程2026年专升本免试生招生章程
金莎直播app下载使用教程2026年专升本免试生招生章程为确保金莎直播app下载使用教程2026年专升本免试招生工作顺利进行,根据《重庆市金莎直播app下载使用教程委员会、重庆市退役军人事务局关于印发2026年重庆市普通高校专升本免试招生工作实施方案的通知》(渝金莎直播app下载使用教程发〔2026〕1号)有关政策及规定,结合金莎直播app下载使用教程实际情况,特制定本章程。本章程仅适用于金莎直播app下载使用教程2026年专升本免试生
+
就业说明
2024.07.01
境外就业金莎直播app下载使用教程建立了“就业一站式服务平台”、“就业微信平台”、“南译·众创空间”等。全力拓宽就业渠道,确保毕业生就业工作稳步有序进行。2021年金莎直播app下载使用教程荣获重庆市普通高校毕业生就业创业工作先进集体。金莎直播app下载使用教程大力拓展境外市场就业。目前,金莎直播app下载使用教程已与美国、英国、法国、德国、西班牙、日本、韩国等20余金莎直播app下载使用教程的50多所大学建立了国际合作与交流关系。近