金莎直播app下载使用教程 - 金莎直播app下载

免费注册
    '; if (data[i].children && data[i].children.length) { var child = data[i].children for (var x = 0; x < child.length; x++) { m02 += '
  • ' + child[x].name + '' + '
    ' + '
      ' if (child[x].children && child[x].children.length) { var str = ''; var children = child[x].children; for (var j = 0; j < children.length; j++) { str += '
    • ' + children[j].name + '
    • ' } m02 += str; } m02 += '
  • ' } } m02 += '
'; } $('#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'); } });
  • +

    招录公告

  • +

    招生章程

    • 关于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年专升本免试生
  • 招生计划
  • 招生政策
  • 专业详解
  • 历年录取
  • 奖助措施
  • 考生答疑
+

+

精彩视频
\
您好,\ \
\ \
' $('.header_left').html(html) if(data.unreadMessage && data.unreadMessage != 0) { var html2 = ''+ data.unreadMessage +'' $(html2).appendTo($('.my_messageList')) } getSpreadToken(); $(function () { // 机器人登陆后,跳转到首页且同时打开机器人窗口 if (localStorage.needOpen == "1") { var userId = $(".fast_login_msg").attr('userId'); if (userId) { var username = $(".fast_login_msg").html(); var scodename = "重庆外语外事学院"; localStorage.needOpen ="2"; var url = getRobotServer() + "/users?" + staticUtil.handleRobotLink(username, sCode, scodename, res.data.userToken); if (objWin == null || objWin.closed) { objWin = window.open(url, '_blank'); if (objWin == null || typeof(objWin) == 'undefined') { alert("智能机器人聊天窗口被浏览器阻止,请点击允许弹出窗口"); } } else { objWin.focus(); } } } }); // 个人中心 鼠标滑过事件 $(".login_box").hover(function () { $(this).find(".login_list").show() }, function () { $(this).find(".login_list").hide() }) $(".login_list ul li a").hover(function () { $(this).css("color", themeColor) }, function () { $(this).css("color", "#333333"); }) // 个人中心 下拉框点击事件 // 点击我的资料 跳转到我的资料页面 16 $(".my_personalFile").click(function () { var url = getAppServer() + '/page/personal/' + sCode; //var url = getAppServer() + "/secondPage/secondPagePersonalPage?"+ "sCode=" + sCode; window.open(toDetailPage(url)); }) // 点击 招办回复 跳转到消息列表页面 15 $(".my_messageList").click(function () { var url = getAppServer() + '/page/message/' + sCode; //var url = getAppServer() + "/secondPage/messageList?"+ "sCode=" + sCode; window.open(toDetailPage(url)); }) // 点击 在线留言 跳转到在线留言页面 14 $(".my_onlineMessage").click(function () { var url = getAppServer() + '/page/online/' + sCode; //var url = getAppServer() + "/secondPage/onlineMsg?"+ "sCode=" + sCode; window.open(toDetailPage(url)); }) // 点击 退出登录 清空缓存 $(".my_loginOut").click(function () { var url = getAppServer() + "/v5users/logOut?" + "identify=" + identify; window.locations.href = toDetailPage(url); }) } } }) }

更多内容

以下内容与「金莎直播app下载使用教程」同属公开资讯,可按栏目扩展阅读相关条目。

本站按公开材料组织页面。需要原文时请核对应栏目发布页。

继续浏览时优先选择同栏目或相近主题,避免被站外镜像带偏。

内容目录

网站首页

正文、栏目列表与相关阅读构成完整路径,适合按主题持续查阅。