|
- @model Learun.Application.TwoDevelopment.EducationalAdministration.CdMajorEntity
- @{
- /**/
-
- ViewBag.Title = "";
- Layout = null;
- }
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=7,IE=8,IE=9,IE=10" />
- <meta name=”renderer” content=”webkit|ie-comp|ie-stand” />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="renderer" content="webkit" />
- <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
- <title>网上报名-专业介绍</title>
-
- <meta name="viewport" content="maximum-scale=1.0,width=device-width,initial-scale=1.0,user-scalable=no" />
- <link href="~/Content/bootstrap/bootstrap.min.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/bootstrap.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/zyjs.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/default.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/hddb.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/style1.css" rel="stylesheet" />
- <link href="~/Content/css/OnlineRegistrate/zyxq.css" rel="stylesheet" />
- <link href="~/Content/jquery/plugin/layer/skin/default/layer.css" rel="stylesheet" />
-
- <script src="~/Content/jquery/jquery-1.10.2.min.js"></script>
- <script src="~/Content/bootstrap/bootstrap.min.js"></script>
- <script src="~/Content/jquery/plugin/layer/layer.js"></script>
-
- </head>
-
- <body style="overflow-x:hidden;">
- <div id="header"></div>
- <div class="page-container">
- <div class="page-content">
- <div class="row">
- <div class="col-md-12">
- <div class="section join" id="tl_container">
- <div class="section-body">
- <form id="defaultForm" class="form-horizontal" role="form" onsubmit="return false;" novalidate="novalidate">
- <div>
- <div style="height:76px; line-height:76px; width:95%; margin:0px auto; border-bottom:1px solid #e7e7e7;">
- <div style="float:left; margin-top:15px;">
- <img src="~/Content/images/OnlineRegistrate/zyxq1.png" width="36" height="45" />
- </div>
- <div style="text-align: left; font-family: 黑体; padding-left:15px; font-weight:900; float:left; font-size: 18px; color: #7c7c7c;">
- 专业介绍
- </div>
- </div>
-
- <div class="zyxq_bk">
- <div class="zyxq_z">
- <div class="zyxq_zi1">专业名称:@Model.MajorName</div>
- <div class="zyxq_zi2">
- 所属校区:@Model.SchoolName<a href="#" target="_blank">(查看官网)</a><br />
- 招生对象:@Model.RecruitObjectText<br />
- 培养层次:@Model.DevelopLevel
- </div>
- <div class="zyxq_zi3">
- @if (ViewBag.IsReselect)
- {
- <a id="SaveReselectMajor" href="javascript:void(0);" type="button" class=" btn btn-primary" style=" text-align:center;"> 确定重选专业</a>
- }
- else
- {
- <a href="/OnlineRegistrate/SignUp?majorNo=@Model.MajorNo" type="button" class=" btn btn-primary" style=" text-align:center;"> 我要报名</a>
- }
- <a href="#" style="padding-left:10px;">咨询电话:400-712-1136</a>
- </div>
- </div>
-
- <div class="zyxq_y">
- <img src="@Model.Photo" width="238" height="229" />
- </div>
- </div>
- <div class="zyxq_x">
- <span>获取证书</span>
- <p>
- @Model.Certificate
- </p>
- <span style="margin-top:15px;">培养目标</span>
- <p>
- @Model.DevelopTarget
- </p>
- <span style="margin-top:15px;">专业介绍</span>
- <p>
- @Model.Introduce
- </p>
- </div>
- <div style="text-align:center;">
- @if (ViewBag.IsReselect)
- {
- <a href="/OnlineRegistrate/MajorInfo?userId=@ViewBag.UserId&isReselect=true" type="button" class=" btn btn-primary" style=" text-align:center;">返回上一页</a>
- }
- else
- {
- <a href="/OnlineRegistrate/MajorInfo" type="button" class=" btn btn-primary" style=" text-align:center;">返回上一页</a>
- }
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <div id="footer"></div>
- <script>
- $(function () {
- $('#header').load('../Content/css/OnlineRegistrate/Header.html');
- $('#footer').load('../Content/css/OnlineRegistrate/Footer.html');
- })
- </script>
- <script>
- //点击“确定重选专业”
- $("#SaveReselectMajor").on('click', function () {
- var data = {
- userId: "@ViewBag.UserId",
- majorNo:"@Model.MajorNo"
- };
- $.ajax({
- type: 'post',
- url: '/OnlineRegistrate/SaveReselectMajor',
- contentType: 'application/json',
- dataType: 'json',
- async: true,
- cache: false,
- data: JSON.stringify(data),
- success: function (result) {
- console.log(result);
- if (result.code == 200) {
- layer.msg(result.info);
- window.location.href = "/OnlineRegistrate/RegistrateForm?userId=@ViewBag.UserId";
- } else {
- layer.msg(result.info);
- }
- },
- error: function (XMLHttpRequest, textStatus, errorThrown) {
- }
- });
- });
- </script>
- </body>
- </html>
|