@@ -15,14 +15,17 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
{ | { | ||||
private StuEnrollIBLL stuEnrollIBLL = new StuEnrollBLL(); | private StuEnrollIBLL stuEnrollIBLL = new StuEnrollBLL(); | ||||
#region 视图 | |||||
public ActionResult Link() | public ActionResult Link() | ||||
{ | { | ||||
return View(); | return View(); | ||||
} | } | ||||
public ActionResult Form() | public ActionResult Form() | ||||
{ | { | ||||
return View(); | return View(); | ||||
} | } | ||||
public ActionResult Search(int type) | public ActionResult Search(int type) | ||||
{ | { | ||||
if (type == 1) | if (type == 1) | ||||
@@ -37,11 +40,24 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
} | } | ||||
return View(); | return View(); | ||||
} | } | ||||
public ActionResult SearchResult() | public ActionResult SearchResult() | ||||
{ | { | ||||
return View(); | return View(); | ||||
} | } | ||||
/// <summary> | |||||
/// 招生简章 | |||||
/// </summary> | |||||
/// <returns></returns> | |||||
public ActionResult StuRecruitmentBrochure() | |||||
{ | |||||
return View(); | |||||
} | |||||
#endregion | |||||
/// <summary> | /// <summary> | ||||
/// 报名 | /// 报名 | ||||
/// </summary> | /// </summary> | ||||
@@ -99,20 +115,20 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers | |||||
return Success(jsonData); | return Success(jsonData); | ||||
} | } | ||||
/// <summary> | /// <summary> | ||||
/// 下载入学须知 | |||||
/// 下载 | |||||
/// </summary> | /// </summary> | ||||
/// <param name="name">文件名称</param> | |||||
/// <param name="pathName">原文件名称</param> | |||||
/// <returns></returns> | /// <returns></returns> | ||||
[HttpPost] | |||||
[AjaxOnly] | |||||
public ActionResult FileDownLoad() | |||||
public ActionResult FileDownLoad(string name, string pathName) | |||||
{ | { | ||||
FileStreamResult result = null; | FileStreamResult result = null; | ||||
try | try | ||||
{ | { | ||||
var path = Server.MapPath("~/Content/otherFile/"); | var path = Server.MapPath("~/Content/otherFile/"); | ||||
var pathoffull = path + "入学须知.pdf"; | |||||
FileStream fsread = fsread = new FileStream(pathoffull, FileMode.OpenOrCreate, FileAccess.ReadWrite); | |||||
result = File(fsread, "application/pdf", "入学须知.pdf"); | |||||
var pathoffull = path + pathName; | |||||
FileStream fsread = new FileStream(pathoffull, FileMode.OpenOrCreate, FileAccess.ReadWrite); | |||||
result = File(fsread, "application/pdf", name + ".pdf"); | |||||
return result; | return result; | ||||
} | } | ||||
@@ -32,6 +32,8 @@ | |||||
</div> | </div> | ||||
<div class="box"><a href="" id="loc">查询考试地点及时间</a></div> | <div class="box"><a href="" id="loc">查询考试地点及时间</a></div> | ||||
<div class="box"><a href="" id="res">查询录取结果</a></div> | <div class="box"><a href="" id="res">查询录取结果</a></div> | ||||
<div class="box"><a href="" id="stuRecruitmentBrochure">招生简章</a></div> | |||||
<div class="box major"><a id="majorIntroduce">专业介绍</a></div> | |||||
</div> | </div> | ||||
<script src="/Content/jquery/jquery-1.10.2.min.js"></script> | <script src="/Content/jquery/jquery-1.10.2.min.js"></script> | ||||
<script src="~/PhonePage/server.js"></script> | <script src="~/PhonePage/server.js"></script> | ||||
@@ -45,7 +47,14 @@ | |||||
$('#loc').attr('href', '/EducationalAdministration/StuEnrollPhone/Search?type=1'); | $('#loc').attr('href', '/EducationalAdministration/StuEnrollPhone/Search?type=1'); | ||||
//查询录取结果 | //查询录取结果 | ||||
$('#res').attr('href', '/EducationalAdministration/StuEnrollPhone/Search?type=2'); | $('#res').attr('href', '/EducationalAdministration/StuEnrollPhone/Search?type=2'); | ||||
}) | |||||
//招生简章 | |||||
$('#stuRecruitmentBrochure').attr('href', '/EducationalAdministration/StuEnrollPhone/StuRecruitmentBrochure'); | |||||
$('.major').find('a').on('click', | |||||
function () { | |||||
location.href = "/EducationalAdministration/StuEnrollPhone/FileDownLoad?name=" + '2022年各专业介绍'+'&pathName='+'各专业介绍.pdf'; | |||||
}); | |||||
}); | |||||
</script> | </script> | ||||
</body> | </body> | ||||
@@ -61,42 +61,9 @@ | |||||
var form = layui.form; | var form = layui.form; | ||||
//按钮点击 | //按钮点击 | ||||
form.on('submit(*)', function (data) { | form.on('submit(*)', function (data) { | ||||
//var strEntity = JSON.stringify(data.field); | |||||
location.href = '/EducationalAdministration/StuEnrollPhone/SearchResult?type=' + type + '&StuName=' + encodeURI(encodeURI($('#StuName').val())) + '&IDCard=' + $('#IDCard').val(); | location.href = '/EducationalAdministration/StuEnrollPhone/SearchResult?type=' + type + '&StuName=' + encodeURI(encodeURI($('#StuName').val())) + '&IDCard=' + $('#IDCard').val(); | ||||
//$.ajax({ | |||||
// url: '/EducationalAdministration/StuEnrollPhone/SearchForm?type=' + type, | |||||
// data: { strEntity: strEntity }, | |||||
// type: "GET", | |||||
// dataType: "json", | |||||
// async: true, | |||||
// cache: false, | |||||
// success: function (data) { | |||||
// if (data.code == 200) { | |||||
// alert("报名成功,请等待考试通知!"); | |||||
// } else { | |||||
// alert(data.info); | |||||
// } | |||||
// }, | |||||
// error: function (XMLHttpRequest, textStatus, errorThrown) { | |||||
// }, | |||||
// beforeSend: function () { | |||||
// }, | |||||
// complete: function () { | |||||
// } | |||||
//}); | |||||
//return false; //阻止表单跳转。如果需要表单跳转,去掉这段即可。 | |||||
}); | }); | ||||
//var laydate = layui.laydate; | |||||
//时间选择 | |||||
//laydate.render({ | |||||
// elem: '#Birthday', | |||||
// min: today.y + '-' + today.m + '-' + today.d | |||||
//}); | |||||
}); | }); | ||||
$(window).load(function () { | $(window).load(function () { | ||||
@@ -37,9 +37,9 @@ | |||||
<input type="text" id="IDCard" name="IDCard" class="layui-input" readonly="readonly"> | <input type="text" id="IDCard" name="IDCard" class="layui-input" readonly="readonly"> | ||||
</div> | </div> | ||||
@*<div class="chickInput"> | @*<div class="chickInput"> | ||||
<span class="chickInputLable"><span>*</span> 手机号</span> | |||||
<input type="text" id="StuMobile" name="StuMobile" class="layui-input" readonly="readonly"> | |||||
</div>*@ | |||||
<span class="chickInputLable"><span>*</span> 手机号</span> | |||||
<input type="text" id="StuMobile" name="StuMobile" class="layui-input" readonly="readonly"> | |||||
</div>*@ | |||||
<div class="chickInput" id="locdiv"> | <div class="chickInput" id="locdiv"> | ||||
<span class="chickInputLable"><span>*</span> 考试信息</span> | <span class="chickInputLable"><span>*</span> 考试信息</span> | ||||
<div id="examDiv" readonly="readonly" style="font-size: 12px;"> | <div id="examDiv" readonly="readonly" style="font-size: 12px;"> | ||||
@@ -51,11 +51,12 @@ | |||||
<input type="text" id="IsAdmission" name="IsAdmission" readonly="readonly"> | <input type="text" id="IsAdmission" name="IsAdmission" readonly="readonly"> | ||||
</div> | </div> | ||||
<div id="admmsg"> | <div id="admmsg"> | ||||
<span style="font-size: 12px; color: red;" id="msg">录取成功,请手机截屏,保存结果图片,报名时出示此图片!</span> | |||||
<div id="fileDownLoad"><a alt="点击下载">入学须知</a></div> | |||||
<span style="font-size: 12px; color: red;" id="msg"> 注:录取成功,请手机截屏,保存结果图片,报名时出示此图片!</span> | |||||
<br /> | |||||
<div id="fileDownLoad"><a alt="点击下载" style="color: blue;text-decoration: underline;margin-left: 30px;">入学须知</a></div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</form> | </form> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
@@ -76,8 +77,6 @@ | |||||
//var StuMobile = request('StuMobile'); | //var StuMobile = request('StuMobile'); | ||||
layui.use(['form', 'laydate', 'upload'], function () { | layui.use(['form', 'laydate', 'upload'], function () { | ||||
var form = layui.form; | var form = layui.form; | ||||
}); | }); | ||||
$(window).load(function () { | $(window).load(function () { | ||||
$('#admmsg').hide(); | $('#admmsg').hide(); | ||||
@@ -103,7 +102,7 @@ | |||||
if (data.StuEnroll) { | if (data.StuEnroll) { | ||||
$('#StuName').val(decodeURI(StuName)); | $('#StuName').val(decodeURI(StuName)); | ||||
$('#IDCard').val(IDCard); | $('#IDCard').val(IDCard); | ||||
// $('#StuMobile').val(StuMobile); | |||||
// $('#StuMobile').val(StuMobile); | |||||
//$('#ExamLocation').val(data.StuEnroll.ExamLocation); | //$('#ExamLocation').val(data.StuEnroll.ExamLocation); | ||||
//if (data.StuEnroll.ExamStartTime) { | //if (data.StuEnroll.ExamStartTime) { | ||||
// $('#ExamStartTime').val(data.StuEnroll.ExamStartTime + '~' + data.StuEnroll.ExamEndTime); | // $('#ExamStartTime').val(data.StuEnroll.ExamStartTime + '~' + data.StuEnroll.ExamEndTime); | ||||
@@ -119,7 +118,8 @@ | |||||
} | } | ||||
} else { | } else { | ||||
$('#app').html('<img src="/Content/images/jfgrid/nodata.jpg" style="width: 100%;height: 40%;" />'); | |||||
$('#app').html( | |||||
'<img src="/Content/images/jfgrid/nodata.jpg" style="width: 100%;height: 40%;" />'); | |||||
} | } | ||||
if (data.examData) { | if (data.examData) { | ||||
var examData = data.examData; | var examData = data.examData; | ||||
@@ -129,11 +129,15 @@ | |||||
var etime = examData[i].BeginTime + '~' + examData[i].EndTime; | var etime = examData[i].BeginTime + '~' + examData[i].EndTime; | ||||
html += '<div class="chickInput">'; | html += '<div class="chickInput">'; | ||||
html += '<span class="chickInputLable" style="font-size: 12px;"> 科目</span>'; | html += '<span class="chickInputLable" style="font-size: 12px;"> 科目</span>'; | ||||
html += '<input type="text" class="layui-input" readonly="readonly" value="' + examData[i].SubjectName + '" style="margin: -39px 0 0 40px; width: 85%;font-size: 12px;">'; | |||||
html += '<input type="text" class="layui-input" readonly="readonly" value="' + | |||||
examData[i].SubjectName + | |||||
'" style="margin: -39px 0 0 40px; width: 85%;font-size: 12px;">'; | |||||
html += '</div>'; | html += '</div>'; | ||||
html += '<div class="chickInput">'; | html += '<div class="chickInput">'; | ||||
html += '<span class="chickInputLable" style="font-size: 12px;"> 时间</span>'; | html += '<span class="chickInputLable" style="font-size: 12px;"> 时间</span>'; | ||||
html += '<input type="text" class="layui-input" readonly="readonly" value="' + etime + '" style="margin: -39px 0 0 40px; width: 85%;font-size: 12px;">'; | |||||
html += '<input type="text" class="layui-input" readonly="readonly" value="' + | |||||
etime + | |||||
'" style="margin: -39px 0 0 40px; width: 85%;font-size: 12px;">'; | |||||
html += '</div>'; | html += '</div>'; | ||||
html += '<br/>'; | html += '<br/>'; | ||||
@@ -155,42 +159,12 @@ | |||||
}); | }); | ||||
$('#fileDownLoad').find('a').on('click', | $('#fileDownLoad').find('a').on('click', | ||||
function() { | |||||
function () { | |||||
//下载入学须知 | //下载入学须知 | ||||
//var url = ""; | |||||
//var a = document.createElement('a'); | |||||
//a.download = 'text.zip'; | |||||
//a.href = url; | |||||
//a.target = '_bank'; | |||||
//document.appendChild(a); | |||||
//a.click(); | |||||
//document.removeChild(); | |||||
$.ajax({ | |||||
url: '/EducationalAdministration/StuEnrollPhone/FileDownLoad', | |||||
type: "Post", | |||||
dataType: "json", | |||||
async: true, | |||||
cache: false, | |||||
success: function (data) { | |||||
if (data.code == 200) { | |||||
} else { | |||||
alert(data.info); | |||||
} | |||||
}, | |||||
error: function (XMLHttpRequest, textStatus, errorThrown) { | |||||
}, | |||||
beforeSend: function () { | |||||
}, | |||||
complete: function () { | |||||
} | |||||
}); | |||||
location.href = "/EducationalAdministration/StuEnrollPhone/FileDownLoad?name=" + '2022年新生入学须知' + '&pathName=' + '新生入学须知.pdf';; | |||||
}); | }); | ||||
renderForm(); | renderForm(); | ||||
}) | |||||
}); | |||||
//重新渲染表单 | //重新渲染表单 | ||||
@@ -0,0 +1,67 @@ | |||||
@{ | |||||
Layout = null; | |||||
} | |||||
<html> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |||||
<meta name="renderer" content="webkit"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | |||||
<meta name="format-detection" content="telephone=no" /> | |||||
<link rel="shortcut icon" href="" /> | |||||
<title>招生简章</title> | |||||
<meta name="keywords" content="" /> | |||||
<meta name="description" content="数字化校园-新生报名" /> | |||||
<link href="~/Content/css/font-awesome.css" rel="stylesheet" /> | |||||
<link href="~/Content/css/common.css" rel="stylesheet" /> | |||||
<link href="~/Content/layui/css/layui.css" rel="stylesheet" media="all" /> | |||||
<link href="~/Content/css/fromAdd.css" rel="stylesheet" /> | |||||
<style type="text/css"> | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div class="warpper" id="app"> | |||||
<!-- / index_sec5 --> | |||||
<div class="chickForm_sec"> | |||||
<div class="fromSec bodyDiv" style=""> | |||||
@*<div class="chickT">招生简章</div>*@ | |||||
<img src="~/Content/images/StuRecruitmentBrochure.jpg" style="height: 100%; width: 100%;padding-left: 20px;padding-right: 20px;" /> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<img id="fromBg" src="~/Content/images/from1.png" /> | |||||
<div class="footer"> Copyright © 2019 数字化智慧校园 版权所有</div> | |||||
<script src="~/Content/js/jquery.min.js"></script> | |||||
<script src="~/Content/layui/layui.all.js"></script> | |||||
<script src="~/Content/vue/vue.js"></script> | |||||
<script src="~/PhonePage/server.js"></script> | |||||
<script> | |||||
layui.use(['form', 'laydate', 'upload'], function () { | |||||
var form = layui.form; | |||||
//按钮点击 | |||||
form.on('submit(*)', function (data) { | |||||
}); | |||||
}); | |||||
$(window).load(function () { | |||||
renderForm(); | |||||
}) | |||||
//重新渲染表单 | |||||
function renderForm() { | |||||
layui.use('form', function () { | |||||
var form = layui.form//高版本建议把括号去掉,有的低版本,需要加() | |||||
form.render(); | |||||
}); | |||||
} | |||||
</script> | |||||
</body> | |||||
</html> |
@@ -1,55 +0,0 @@ | |||||
数字化智慧校园 | |||||
统一身份认证补充接口 | |||||
V1.0 | |||||
概述 | |||||
根据特定需求开发补充接口 | |||||
登录接口 | |||||
采用标准 Http GET 请求发送用户名、密码到认证接口,接口实现用户名密码判定后返 | |||||
回标准 json; | |||||
请求地址:http://10.30.0.10:8000/Login/CheckLoginForSSOBC | |||||
请求方式:发送标准 Http GET 请求到认证地址 | |||||
接口请求参数 说明 | |||||
参数 | |||||
用户名 | |||||
u 密码 | |||||
p | |||||
认证接口返回参数 | |||||
参数 说明 | |||||
code 状态码 返回 200 成功、其他失败 | |||||
info 状态消息 返回 login success 表示登录成功、其他失败 | |||||
data 保留 暂时无用 | |||||
登录成功后,认证服务器将在用户浏览器 cookies 中写入数字化智慧校园系统数据,第三方 | |||||
系统可直接跳转到 http://10.30.0.10:8000/Home/Index 进入数字化智慧校园系统。 | |||||
退出登录接口 | |||||
第三方系统退出时,需要主动调用退出登录接口以同步数字化智慧校园系统退出状态。 | |||||
采用标准 Http POST 请求,返回标准 json; | |||||
请求地址:http://10.30.0.10:8000/Login/OutLoginForSSOBC | |||||
请求方式:发送标准 Http POST 请求到认证地址 | |||||
接口请求参数:无 | |||||
认证接口返回参数 | |||||
参数 说明 | |||||
code 状态码 返回 200 成功、其他失败 | |||||
info 状态消息 返回 logout success 表示退出成功、其他失败 | |||||
data 保留 暂时无用 | |||||
@@ -0,0 +1,175 @@ | |||||
新疆广播电视学校2022年招生 | |||||
专业代码:760202 | |||||
培养目标 | |||||
培养具有工匠精神和信息素养、掌握扎实的科 | |||||
学文化基础和摄影摄像、音视频编辑、短视频制作 | |||||
等知识、德智体美劳全面发展的社会主义建设者和 | |||||
接班人。面向影视制作公司、广告公司、音像制作 | |||||
公司、网络公司、婚庆礼仪公司、企事业单位等行 | |||||
业企业,培养从事影视节目摄影、摄像人员、后期制 | |||||
作人员、策划人员以及基层广播电视台从事新闻工 | |||||
作的德智体美全面发展的技能型应用人才。 | |||||
就业单位 就业面向 | |||||
就业岗位 | |||||
专业课程介绍 | |||||
电视选题与策划 | |||||
影视作品赏析 | |||||
影视摄像 | |||||
电视音乐音响 | |||||
视听语言 | |||||
影视剪辑 | |||||
非线性编辑 | |||||
影视后期合成 | |||||
电视专题节目制作 | |||||
数字特技制作(AE) | |||||
音频编辑 | |||||
摄影构图 | |||||
电视照明 | |||||
电视文案写作 | |||||
升学专业 | |||||
高职:电视节目制作专业 影 | |||||
视多媒体、摄影与摄像技术 | |||||
本科:广播电视编导专业 数 | |||||
字媒体艺术 广播电视新闻专 | |||||
业 | |||||
职业资格证 | |||||
专业代码:760201 | |||||
培养目标 | |||||
培养具有工匠精神和信息素养、掌握 | |||||
扎实的科学文化基础和播音主持基本知识 | |||||
及传媒行业相关法律法规、德智体美劳全 | |||||
面发展的社会主义建设者和接班人。面向 | |||||
广播电台、电视台、影视制作公司、广告 | |||||
公司、婚庆礼仪公司、企事业单位等行业 | |||||
企业,培养从事播音主持、现场报道、少 | |||||
数民族语言影视配音、公关礼仪工作的德 | |||||
智体美全面发展的技能型应用人才。 | |||||
就业单位 就业面向 | |||||
就业岗位 | |||||
专业课程介绍 | |||||
播音发声 影视化妆 | |||||
普通话语音 口语述评与模拟主持 | |||||
播音作品欣赏 客户呼叫服务 | |||||
播音主持语言表达 新闻播音 | |||||
播音主持训练 专题播音 | |||||
广播播音主持 新闻直播 | |||||
电视播音主持 庆典类节目主持 | |||||
升学专业 | |||||
职业资格证书 | |||||
呼叫中心客户服务与管理 | |||||
电商直播 | |||||
新媒体技术 | |||||
播音员与节目主持 | |||||
专业代码:710204 | |||||
培养目标 | |||||
培养具有工匠精神和信息素养、掌握扎实的 | |||||
科学文化基础和视听语言基本规律、图形与动 | |||||
画技术、数字媒体技术等知识德智体美劳全面 | |||||
发展的社会主义建设者和接班人。面向数字媒 | |||||
体技术应用领域,培养从事数字影像处理、新 | |||||
媒体技术、无人机拍摄、融媒体内容制作、数 | |||||
字音像设备使用与维护等工作,德智体美劳全 | |||||
面发展的高素质劳动者和技能型人才。 | |||||
专业面向 | |||||
面向数字媒 数字图像处理人员 | |||||
体技术应用领域,培 新媒体技术人员 | |||||
养从事数字影像处理、 融媒体技术人员 | |||||
新媒体技术、无人机 摄影摄像人员 | |||||
拍摄、融媒体内容制 数字视影视后期处理 | |||||
作、数字音像设备使 人员 | |||||
用与维护等工作的专 录音师、音响调音员 | |||||
业技术人员 | |||||
专业课程介绍 | |||||
升学专业与职业资格证书 | |||||
升学专业: 职业资格证书 | |||||
影视多媒体技术 数字影像处理 | |||||
音像技术 新媒体技术 | |||||
摄影摄像技术 融媒体内容制作 | |||||
融媒体技术与运营 无人机驾驶 | |||||
网络直播与运营 | |||||
数字媒体设备应用与管理 | |||||
专业代码:710202 | |||||
培养目标 | |||||
培养具有工匠精神和信息素养、掌握扎实 | |||||
的科学文化基础和网络规划、网络技术、程序 | |||||
设计等知识,德智体美劳全面发展的社会主义 | |||||
建设者和接班人。面向计算机网络技术的集成 | |||||
与应用领域,培养从事网络组建、网络设备安 | |||||
装与调试、网络系统维护与管理、网络产品营 | |||||
销以及相关产品销售等工作,德智体美全面发 | |||||
展的高素质劳动者和技能型人才。 | |||||
专业面向 | |||||
就业面向 就业岗位 | |||||
面向计算机网络技术的集 网络设备调试员 | |||||
成与应用领域,培养从事网络 算机网络管理员 | |||||
组建、网络设备安装与调试、 网络编辑员 | |||||
网络系统维护与管理、网络产 电子商务师 | |||||
品营销以及相关产品销售等工 | |||||
作 | |||||
专业课程介绍 | |||||
常用工具软件 网页设计与制作 | |||||
电工电子技能与技术 网络安全技术 | |||||
计算机网络技术基础 计算机网络设备应用 | |||||
计算机组装与维护 电子商务应用 | |||||
网络设计方案 | |||||
综合布线设计与设工 | |||||
计算机图像处理/photoshop | |||||
计算机图形处理/CAD | |||||
升学专业与职业资格 | |||||
升学专业 职业资格证书 | |||||
计算机应用技术 网络设备安装与调试 | |||||
计算机网络技术 5G网络运营与维护 | |||||
计算机网络与安全管理 电子商务 | |||||
网络系统管理 | |||||
网络工程 | |||||
专业代码:710103 | |||||
培养目标 | |||||
掌握电工技术、电子技术、电子装配工艺、电子线路设计 | |||||
等知识,具备电子产品装配与调试、仪器仪表装配与维修等 | |||||
能力,主要面向电子产品生产和各类广播电视发射台、网络 | |||||
公司等行业企业,培养从事电子整机生产、安装、服务和管 | |||||
理以及电子设备装配、调试、维修与售后等工作;数字广播 | |||||
电视技术设备的维护和机房值班等工作,具有一定可持续发 | |||||
展和创新能力,理论知识和实践技能相结合,德智体美劳全 | |||||
面发展的高素质劳动者和技能型人才。 | |||||
专业面向 | |||||
就业面向: | |||||
面向电子产品生产和 就业岗位: | |||||
各类广播电视发射台、网 | |||||
络公司等行业企业,培养 电子产品装配工 | |||||
从事电子整机生产、安装、 电子产品检验员 | |||||
服务和管理以及电子设备 数字广播电视机线员 | |||||
装配、调试、维修与售后 | |||||
等工作及数字广播电视技 | |||||
术设备的维护和机房值班 | |||||
等工作的专业人员。 | |||||
专业课程介绍 | |||||
电工技术基础与技能 数字卫星技术 | |||||
电子测量仪器 数字广播电视发送与接收技术 | |||||
数字电视技术 数字视听设备使用与维修 | |||||
光纤通信技术 电子产品检验技术 | |||||
有线电视系统设计与施工 | |||||
升学专业与职业资格证书 | |||||
职业资格证书: | |||||
@@ -0,0 +1,66 @@ | |||||
新疆广播电视学校 2022 年普通中专 | |||||
新生入学须知 | |||||
祝贺你已被我校录取、欢迎你来我校学习!现将入学有关事宜通知如下: | |||||
一、请你持录取通知书于 9 月 5 日至 7 日来我校报到。 | |||||
温馨提示: | |||||
新生来学校报到时请提前准备好“7 日通信大数据行程码”、“新疆政务服务 | |||||
码”或“乌鲁木齐畅行码”(绿码)及 48 小时有效的核酸检测报告(阴性),学 | |||||
校要进行身份核验和体温检测。 | |||||
疫情期间,请予理解和配合。 | |||||
二、新生报到时,需携带以下物品: | |||||
1、录取通知书。 | |||||
2、初中毕业证书的原件和复印件(要求复印到同一张 A4 纸面上)一份以 | |||||
及初中纸质档案。 | |||||
3、户口复印件(要求将户口首页、户主页和本人页复印到同一张 A4 纸面 | |||||
上)四份、身份证复印件(要求将身份证正反面复印到同一张 A4 纸面上)四份。 | |||||
4、近期一寸免冠证件照片四张,团员证或团组织关系。 | |||||
5、学校实行准军事化管理,被褥在学校统一购买(被褥预计 365 元,含 | |||||
被子、褥子、枕头各一个,被套、床单、枕巾各两个,盆子两个等),其余生活、 | |||||
学习用品以及伙食费自备。 | |||||
三、凡被我校录取有正式学籍的在校生可按现行国家规定享受以下政策。 | |||||
1、所有学生全部享受免学费政策。 | |||||
免学费标准: | |||||
播音与主持:3300 元/学年; 广播影视节目制作:3300 元/学年; | |||||
电子技术应用:2200 元/学年; 数字媒体技术应用:2200 元/学年; | |||||
计算机网络技术:2200 元/学年。 | |||||
2、南疆四地州以及 23 个边境县户籍的学生全部享受免教材费、免住宿费 | |||||
政策。 | |||||
23 个边境县: | |||||
伊 犁 州:昭苏县、察布查尔锡伯自治县、霍城县、尼勒克县 | |||||
博 州:温泉县、博乐市 | |||||
塔城地区:托里县、裕民县、塔城市、额敏县、和布克赛尔县 | |||||
阿 勒 泰:吉木乃县、哈巴河县、布尔津县、阿勒泰市、福海县、富蕴县、青河县 | |||||
昌 吉 州:奇台县、木垒县、 | |||||
哈密地区:巴里坤县、伊吾县、哈密市 | |||||
免教材、住宿费标准:教材费—300 元/每生/学年;住宿费—600 元/每生/学年。 | |||||
3、南疆四地州户籍、脱贫家庭、脱贫不稳定家庭、边缘易致贫家庭、城 | |||||
乡低保家庭、特困供养家庭、孤儿和残疾等学生全部享受国家助学金,其他地 | |||||
区家庭经济困难的学生凭困难证明材料按在校其他地区户籍学生的 20%比例享 | |||||
受助学金(家庭经济困难的学生要在开学报到时提供父母所在单位或家庭住址 | |||||
所在街道办事处出具的家庭困难证明和县以上民政局的证明)。 | |||||
助学金标准——2000 元/每生/学年(初中中专学生享受两年) | |||||
4、德、智、体、美、劳全面发展且优秀的学生有机会获得国家奖学金、 | |||||
学校奖学金的奖励。 | |||||
国 家 奖 学 金:6000 元/每生/学年; | |||||
学校一等奖学金:2000 元/每生/学年; | |||||
学校二等奖学金:1200 元/每生/学年; | |||||
学校三等奖学金: 800 元/每生/学年。 | |||||
四、除现行国家政策外,我校将免除每位新生的军训费,体检费和实习保 | |||||
险费合计 282 元。 | |||||
五、新生报到后十日内,确因特殊原因可以根据本人实际情况向学校招生 | |||||
与就业指导办公室提出书面申请,经批准后重新调整专业学习。 | |||||
六、学生毕业后,均有机会报考我校相应的成人大专专业继续学习,直至 | |||||
本科毕业;20%的应届优秀毕业生可以按照自治区教育厅的文件精神直升疆内普 | |||||
通高等专科院校继续学习;中专学生第三年可以报名参加普通高考和三校生考 | |||||
试。 | |||||
七、报到地址:乌鲁木齐市天山区团结路 620 号(乘 10 路、60 路、61 路、 | |||||
70 路、301 路、920 路、4103 路公交车在陶瓷厂下车即到) | |||||
联系电话:0991-6552258、6530980 | |||||
特别提示:我校招生不收取任何咨询、报名、考试等费用。 | |||||
新疆广播电视学校 | |||||
招生与就业指导办公室 | |||||
二 0 二二年七月八日 | |||||
@@ -2403,6 +2403,7 @@ | |||||
<Content Include="Content\images\SsoSystem\noLogin.png" /> | <Content Include="Content\images\SsoSystem\noLogin.png" /> | ||||
<Content Include="Content\images\SsoSystem\search.png" /> | <Content Include="Content\images\SsoSystem\search.png" /> | ||||
<Content Include="Content\images\SsoSystem\user.jpg" /> | <Content Include="Content\images\SsoSystem\user.jpg" /> | ||||
<Content Include="Content\images\StuRecruitmentBrochure.jpg" /> | |||||
<Content Include="Content\jquery\plugin\jqprint\jqprint.css" /> | <Content Include="Content\jquery\plugin\jqprint\jqprint.css" /> | ||||
<Content Include="Content\jquery\plugin\jqprint\jQuery.print.js" /> | <Content Include="Content\jquery\plugin\jqprint\jQuery.print.js" /> | ||||
<Content Include="Content\jquery\plugin\jSignature.min.js" /> | <Content Include="Content\jquery\plugin\jSignature.min.js" /> | ||||
@@ -7920,6 +7921,7 @@ | |||||
<Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\ScheduleIndex.cshtml" /> | <Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\ScheduleIndex.cshtml" /> | ||||
<Content Include="Areas\LogisticsManagement\Views\Accommodation\ClearForm.cshtml" /> | <Content Include="Areas\LogisticsManagement\Views\Accommodation\ClearForm.cshtml" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticsProvince.cshtml" /> | <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticsProvince.cshtml" /> | ||||
<Content Include="Areas\EducationalAdministration\Views\StuEnrollPhone\StuRecruitmentBrochure.cshtml" /> | |||||
<None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | <None Include="Properties\PublishProfiles\CustomProfile.pubxml" /> | ||||
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | <None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | ||||
<Content Include="Views\Login\Default-beifen.cshtml" /> | <Content Include="Views\Login\Default-beifen.cshtml" /> | ||||