12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/Duty/Edit";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- //新增
- function Duty_Add() {
- var redirectTo = url + "?MNU=" + mnu;
- $.popupTopWindow('值班安排新增', redirectTo, 650, 300, null, null);
- }
- function reload() {
- $("#dgDutyList").cmsXDataTable("load", $.getDataGridParams("dgDutyList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgDutyList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.DutyID);
- });
- return d;
- }
- //点击列表更新
- function edit(rowindex, rowdata) {
- var redirectTo = url + "?dutyID=" + rowdata.DutyID + "&MNU=" + mnu + "&isView=1";
- $.popupTopWindow('值班安排信息', redirectTo, 650, 300, null, null);
- }
- //修改按钮
- function Duty_Update() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统提示", "请选择您要修改的值班管理信息!");
- return;
- }
- if (d.length > 1) {
- $.messager.alert("系统信息", "只能选择单个记录进行修改。");
- return;
- }
- var redirectTo = url + "?dutyID=" + d + "&MNU=" + mnu;
- $.popupTopWindow('值班安排修改', redirectTo, 650, 300, null, null);
- }
- //删除
- function Duty_Delete() {
- var d = validChoose().join(',');
- if (d == "") {
- $.messager.alert("系统提示", "请选择您要删除的信息。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
- if (r) {
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/Duty/Delete', { dutyIDs: d }, function (data) {
- if (data == "删除成功!") {
- $.messager.alert("系统提示", data);
- $("#dgDutyList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data);
- }
- });
- }
- });
- }
- function Duty_Export() {
- $("#formQuery").submit();
- }
- function QueryCampusDropdownList(data) {
- $("#CollegeDropdown").combobox("reload", CMS_SystemConfig.VirtualDirectoryPath + "/College/CollegeDropdownListBanid?campusID=" + data.Value + "");
- reload();
- }
- function QueryCollegeDropdownList(data) {
- $("#DepartmentDropdown").combobox("reload", CMS_SystemConfig.VirtualDirectoryPath + "/Department/DepartmentDropdownListBanid?collegeID=" + data.Value + "");
- reload();
- }
- function QueryDepartmentDropdownList(data) {
- reload();
- }
- function QueryTimesSegmentDropdownList(data) {
- reload();
- }
|