Browse Source

1

娄底高职分支
ndbs 2 years ago
parent
commit
638e671b5d
1 changed files with 18 additions and 3 deletions
  1. +18
    -3
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/WorkStaff/Index.js

+ 18
- 3
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/WorkStaff/Index.js View File

@@ -75,9 +75,24 @@ var bootstrap = function ($, learun) {
{ label: "名称", name: "Name", width: 100, align: "left"},
{ label: "性别", name: "Gender", width: 100, align: "left"},
{ label: "民族", name: "Nationality", width: 100, align: "left"},
{ label: "出生年月日", name: "Birthday", width: 100, align: "left"},
{ label: "参加工作时间", name: "jobTime", width: 100, align: "left"},
{ label: "入党时间", name: "PartyTime", width: 100, align: "left"},
{
label: "出生年月日", name: "Birthday", width: 100, align: "left",
formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}
},
{
label: "参加工作时间", name: "jobTime", width: 100, align: "left",
formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}
},
{
label: "入党时间", name: "PartyTime", width: 100, align: "left",
formatter: function (cellvalue) {
return learun.formatDate(cellvalue, 'yyyy-MM-dd');
}
},
{ label: "籍贯", name: "Origin", width: 100, align: "left"},
{ label: "健康状况", name: "HealthStatus", width: 100, align: "left"},
{ label: "有何专长", name: "Speciality", width: 100, align: "left"},


Loading…
Cancel
Save