Browse Source

招生管理新生管理出生日期 年月日回显

娄底高职分支
ndbs 1 year ago
parent
commit
acdc39ff48
15 changed files with 65 additions and 17 deletions
  1. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/AllocationClass.js
  2. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/AllocationDormitory.js
  3. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/CheckIn.js
  4. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetArticles.js
  5. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetCloth.js
  6. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetClothSize.js
  7. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Index.js
  8. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsHelp.js
  9. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsPay.js
  10. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsPhoto.js
  11. +6
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Military.js
  12. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/NewAllocationBed.js
  13. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/PayAfter.js
  14. +4
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Report.js
  15. +7
    -3
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/StuTuition.js

+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/AllocationClass.js View File

@@ -186,7 +186,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left" },
{
label: "出生年月", name: "Birthday", width: 100, align: "left" formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}},
{
label: "班级", name: "ClassNo", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/AllocationDormitory.js View File

@@ -158,7 +158,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{
label: "班级", name: "ClassNo", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/CheckIn.js View File

@@ -238,7 +238,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "届别", name: "FreshType", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetArticles.js View File

@@ -204,7 +204,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetCloth.js View File

@@ -204,7 +204,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/GetClothSize.js View File

@@ -200,7 +200,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}},
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Index.js View File

@@ -366,7 +366,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsHelp.js View File

@@ -268,7 +268,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsPay.js View File

@@ -236,7 +236,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/IsPhoto.js View File

@@ -196,7 +196,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 6
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Military.js View File

@@ -234,7 +234,12 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left",
formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}
},
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/NewAllocationBed.js View File

@@ -126,7 +126,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}},
{
label: "班级", name: "ClassNo", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/PayAfter.js View File

@@ -322,7 +322,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 4
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/Report.js View File

@@ -309,7 +309,10 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return val.substring(0, 10); } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
} },
{ label: "身份证", name: "IDCard", width: 100, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",


+ 7
- 3
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuEnroll/StuTuition.js View File

@@ -125,7 +125,7 @@ var bootstrap = function ($, learun) {
var data = $('#gridtable').jfGridGet('rowdata');
if (data.length > 0) {
var IsManualSubsidize = $('#gridtable').jfGridValue('IsManualSubsidize');
if (IsManualSubsidize.indexOf('true') != -1) {
learun.alert.warning('选中项目包含多次操作免学费的数据!');
return;
@@ -325,7 +325,11 @@ var bootstrap = function ($, learun) {
});
}
},
{ label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (val) { return learun.formatDate(val, 'yyyy-MM-dd') } },
{
label: "出生年月", name: "Birthday", width: 100, align: "left", formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}
},
{ label: "身份证", name: "IDCard", width: 150, align: "left" },
{
label: "政治面貌", name: "Political", width: 100, align: "left",
@@ -405,7 +409,7 @@ var bootstrap = function ($, learun) {
page.search();
},
refreshMoney: function (queryJson) {
learun.httpAsyncGetWithParam(top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetMilitaryStatistics', { queryJson: queryJson,type:2 }, function (res) {
learun.httpAsyncGetWithParam(top.$.rootUrl + '/EducationalAdministration/StuEnroll/GetMilitaryStatistics', { queryJson: queryJson, type: 2 }, function (res) {
//console.log(res);
$("#allAmount").html(res.data.aa);
$("#isAmount").html(res.data.bb);


Loading…
Cancel
Save