|
|
@@ -167,7 +167,7 @@ var bootstrap = function ($, learun) { |
|
|
|
|
|
|
|
}, |
|
|
|
initGird: function () { |
|
|
|
$('#gridtable').lrAuthorizeJfGrid({ |
|
|
|
$('#gridtable').jfGrid({ |
|
|
|
url: top.$.rootUrl + '/EducationalAdministration/StuInfoFresh/GetPageList', |
|
|
|
headData: [ |
|
|
|
{ label: '考生号', name: 'ksh', width: 150, align: "left" }, |
|
|
@@ -372,8 +372,55 @@ var bootstrap = function ($, learun) { |
|
|
|
} |
|
|
|
}, |
|
|
|
{ label: '银行卡账号', name: 'BankCard', width: 150, align: "left" }, |
|
|
|
{ label: '开户银行位置', name: 'BankLocation', width: 300, align: "left" }, |
|
|
|
{ label: '开户银行位置', name: 'BankLocation', width: 150, align: "left" }, |
|
|
|
{ label: '开户行号', name: 'BankNo', width: 150, align: "center" }, |
|
|
|
{ label: '户籍地', name: 'OriginAddress', width: 100, align: "center" }, |
|
|
|
{ |
|
|
|
label: '政治面貌', name: 'PartyFaceNo', width: 100, align: "center", formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('dataItem', { |
|
|
|
key: value, |
|
|
|
code: 'PolityStatus', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data.text); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ label: '家庭详细地址', name: 'FamilyAddress', width: 100, align: "center" }, |
|
|
|
{ label: '学生联系电话', name: 'telephone', width: 100, align: "center" }, |
|
|
|
{ label: '家长联系电话', name: 'ParentTelephone', width: 100, align: "center" }, |
|
|
|
{ label: '艺术类文化成绩', name: 'ArtCultureScore', width: 100, align: "center" }, |
|
|
|
{ label: '艺术类专业成绩', name: 'ArtProfessionScore', width: 100, align: "center" }, |
|
|
|
{ label: '艺术类综合成绩总分', name: 'ArtComprehensiveScore', width: 120, align: "center" }, |
|
|
|
{ |
|
|
|
label: '艺术类录取专业', name: 'ArtRecruitMajorNo', width: 100, align: "center", |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('custmerData', { |
|
|
|
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo', |
|
|
|
key: value, |
|
|
|
keyId: 'majorno', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data['majorname']); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ label: '体育类文化成绩', name: 'SportCultureScore', width: 100, align: "center" }, |
|
|
|
{ label: '体育类专业成绩', name: 'SportProfessionScore', width: 100, align: "center" }, |
|
|
|
{ label: '体育类综合成绩总分', name: 'SportComprehensiveScore', width: 120, align: "center" }, |
|
|
|
{ |
|
|
|
label: '体育类录取专业', name: 'SportRecruitMajorNo', width: 100, align: "center", |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('custmerData', { |
|
|
|
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdMajorInfo', |
|
|
|
key: value, |
|
|
|
keyId: 'majorno', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data['majorname']); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
], |
|
|
|
mainId: 'ID', |
|
|
|
isPage: true, |
|
|
|