12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- function LevelStandard_Add() {
- $.popupTopWindow('标准课酬', CMS_SystemConfig.VirtualDirectoryPath + '/LevelStandard/Edit?MNU=' + mnu, 600, 210);
- }
- function LevelStandard_Update() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统信息", "请选择您要修改的标准课酬。");
- return;
- }
- if (d.length > 1) {
- $.messager.alert("系统信息", "只能选择单个记录进行修改。");
- return;
- }
- $.popupTopWindow('标准课酬', CMS_SystemConfig.VirtualDirectoryPath + '/LevelStandard/Edit?MNU=' + mnu + "&LevelStandardID=" + d[0], 600, 210);
- }
- //删除
- function LevelStandard_Delete() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统提示", "请选择您要删除的标准课酬。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要删除该标准课酬?", function (r) {
- if (r) {
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/LevelStandard/Delete', { levelStandardIDs: d.join(',') }, function (data) {
- if (data.IsSuccess) {
- $.messager.alert("系统提示", "删除成功!");
- $("#dgLevelStandardList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data.Message);
- }
- });
- }
- });
- }
- function reload() {
- $("#dgLevelStandardList").cmsXDataTable("load", $.getDataGridParams("dgLevelStandardList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgLevelStandardList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.LevelStandardID);
- });
- return d;
- }
|