1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "ClassStudentReport";
- var status = ViewBag.Status;
- string LoginUserID = ViewBag.UserID;
- var DataRange = ViewBag.DataRange;
- }
- @section scripts{
- <script type="text/javascript">
- var curWwwPath = window.document.location.href;
- var pathName = window.document.location.pathname;
- var pos = curWwwPath.indexOf(pathName);
- var localhostPaht = curWwwPath.substring(0, pos) + "/";
- var nonSelect = "@DropdownList.SELECT_ALL";
- var endStatusID = "@BaseExtensions.GetEndFlowStatus("CF_DifferentDynamic")";
- var LoginUserID='@LoginUserID';
- var DataRange='@DataRange';
- var SchoolName = '@EMIS.Utility.RSL.Get("UniversityName")';
- </script>
- <script src="../../Scripts/Business/Studentfile/ClassStudentReport.js" type="text/javascript"></script>
- }
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentCradReport, new DropdownListOptions
- {
- ID = "selReport",
- Name = "selReport",
- BindType = DropdownListBindType.PleaseSelect,
- SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentCradReport.Card,
- OnSelect = "Report"
- })
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @*<select id="selReport" onchange="Report()">
- <option value="1">班级学生名单</option>
- <option value="2" selected="selected">学生学籍卡</option>
- <option value="3">学生准考证卡</option>
- </select>*@
- <div class="search_list">
- <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
- left: 5px;"></iframe>
- </div>
- </div>
|