12345678910111213141516171819202122232425262728293031 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/PersonalPayment/Edit";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- //查询
- function reload() {
- $("#dgPersonalPaymentList").cmsXDataTable("load", $.getDataGridParams("dgPersonalPaymentList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgPersonalPaymentList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.StudentChargeID);
- });
- return d;
- }
- //已缴金额列设置颜色为红色
- function SetRedColumn(index, row, value) {
- return " <span style=\"color: red;\">" + value + "</span>";
- }
- //导出
- function PersonalPayment_Excel() {
- $("#formQuery").submit();
- }
|