1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/University/Edit";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- //刷新
- function reload() {
- $("#dgUniversityList").cmsXDataTable("load", $.getDataGridParams("dgUniversityList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgUniversityList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.UniversityID);
- });
- return d;
- }
- //新增
- function University_Add() {
- var d = validChoose();
- if (d.length > 0) {
- $.popupTopWindow('学校信息复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/University/CopyAdd?universityID=' + d[0] + '&MNU=' + mnu, 700, 540, null, null);
- } else {
- var redirectTo = url + "?MNU=" + mnu;
- $.popupTopWindow('学校信息新增', redirectTo, 700, 540, null, null);
- }
- }
- //修改
- function University_Update() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统信息", "请选择要修改的信息。");
- return;
- }
- if (d.length > 1) {
- $.messager.alert("系统信息", "只能选择单个记录进行修改。");
- return;
- }
- var redirectTo = url + "?universityID=" + d + "&MNU=" + mnu + "&type=edit";
- $.popupTopWindow('学校信息修改', redirectTo, 700, 540, null, null);
- }
- //查看
- function edit(rowindex, rowdata) {
- var redirectTo = url + "?universityID=" + rowdata.UniversityID + "&MNU=" + mnu + "&type=detail";
- $.popupTopWindow('学校信息', redirectTo, 700, 540, null, null);
- }
- //删除
- function University_Delete() {
- var d = validChoose().join(',');
- if (d == "") {
- $.messager.alert("系统信息", "请选择您要删除的信息。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
- if (r) {
- $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/University/Delete', { universityIDs: d }, function (data) {
- if (data.IsSuccess) {
- $.messager.alert("系统提示", data.Message);
- $("#dgUniversityList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data.Message);
- }
- });
- }
- });
- }
- //导出Excel
- function University_Export() {
- $("#formQuery").submit();
- }
|