123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/EvaluationStudentSettingScore/Edit";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- //刷新
- function reload() {
- $("#dgEvaluationStudentSettingScoreList").cmsXDataTable("load", $.getDataGridParams("dgEvaluationStudentSettingScoreList"));
- }
- //获取选中的数据All
- function validChooseAll() {
- var d = [];
- $.each($("#dgEvaluationStudentSettingScoreList").cmsXDataTable("getSelections"), function (index) {
- d.push(this);
- });
- return d;
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgEvaluationStudentSettingScoreList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.EvaluationStudentSettingScoreID);
- });
- return d;
- }
- //查看
- function edit(rowindex, rowdata) {
- var redirectTo = url + "?evaluationStudentSettingScoreID=" + rowdata.EvaluationStudentSettingScoreID + "&MNU=" + mnu + "&type=detail";
- $.popupTopWindow('学评评分信息', redirectTo, 720, 500, null, null);
- }
- //参评人数明细
- function editParticipateCount(rowindex, rowdata) {
- var d = [];
- d.push(rowdata.EvaluationStudentSettingScoreID);
- redirectTo = CMS_SystemConfig.VirtualDirectoryPath + "/EvaluationStudentSettingScore/EvaluationStudentList?evaluationStudentSettingScoreID=" + rowdata.EvaluationStudentSettingScoreID + "&MNU=" + mnu;
- $.popupTopWindow('参评人数明细', redirectTo, 1350, 550, reload, d);
- }
- //评分生成
- function EvaluationStudentSettingScore_Create() {
- var redirectTo = CMS_SystemConfig.VirtualDirectoryPath + "/EvaluationStudentSettingScore/Create?MNU=" + mnu;
- $.popupTopWindow('评分生成', redirectTo, 750, 325, reload);
- }
- //新增
- function EvaluationStudentSettingScore_Add() {
- var d = validChoose();
- if (d.length > 0) {
- $.popupTopWindow('学评评分复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/EvaluationStudentSettingScore/CopyAdd?evaluationStudentSettingScoreID=' + d[0] + '&MNU=' + mnu, 720, 500, null, null);
- }
- else {
- var redirectTo = url + "?MNU=" + mnu;
- $.popupTopWindow('学评评分新增', redirectTo, 720, 500, null, null);
- }
- }
- //修改
- function EvaluationStudentSettingScore_Edit() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统信息", "请选择您要修改的信息。");
- return;
- }
- if (d.length > 1) {
- $.messager.alert("系统提示", "只能选择单个记录进行修改。");
- return;
- }
- var redirectTo = url + "?evaluationStudentSettingScoreID=" + d + "&MNU=" + mnu + "&type=edit";
- $.popupTopWindow('学评评分修改', redirectTo, 720, 500, null, null);
- }
- //删除
- function EvaluationStudentSettingScore_Delete() {
- var d = validChoose().join(',');
- if (d == "") {
- $.messager.alert("系统提示", "请选择您要删除的信息。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
- if (r) {
- $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/EvaluationStudentSettingScore/Delete', { evaluationStudentSettingScoreIDs: d }, function (data) {
- if (data.IsSuccess) {
- $.messager.alert("系统提示", data.Message);
- $("#dgEvaluationStudentSettingScoreList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data.Message);
- }
- });
- }
- });
- }
- //设置列颜色为红色
- function SetRedColumn(index, row, value) {
- return " <span style=\"color: red;\">" + value + "</span>";
- }
- //设置相应的行颜色为红色
- function SetRedGrid(rowIndex, rowData) {
- if (rowData.OpenState != true) {
- return "color: red;";
- }
- else {
- return "";
- }
- }
- //导出Excel
- function EvaluationStudentSettingScore_Export() {
- $("#formQuery").submit();
- }
- //联动查询
- function queryCampus(data) {
- var campusID = $("#CampusDropdown").combogridX("getValue");
- var jsonString = "({'QueryParamsDatas':'CampusDropdown|*|" + campusID + "|@|'})";
- $("#CollegeDropdown").combogridX("reload", eval(jsonString));
- reload();
- }
- function queryCollege(data) {
- reload();
- }
- function queryDepartment(data) {
- var departmentID = $("#DepartmentDropdown").combogridX("getValue"); //combobox
- var jsonString = "({'QueryParamsDatas':'DepartmentDropdown|*|" + departmentID + "|@|'})";
- $("#StaffComboGrid").combogridX("reload", eval(jsonString));
- reload();
- }
|