|
|
@@ -50,7 +50,7 @@ var bootstrap = function ($, learun) { |
|
|
|
//政治面貌 |
|
|
|
$('#PartyFaceNo').lrDataSourceSelect({ code: 'BCdPartyFace', value: 'partyfaceno', text: 'partyface' }); |
|
|
|
//最高学历 |
|
|
|
$('#HighestRecord').lrDataSourceSelect({ code: 'BCdCultureDegree', value: 'culturedegreeno', text: 'culturedegree' }); |
|
|
|
$('#HighestRecord').lrDataItemSelect({ code: 'HighestEducation'}); |
|
|
|
|
|
|
|
|
|
|
|
//民族 |
|
|
@@ -464,12 +464,11 @@ var bootstrap = function ($, learun) { |
|
|
|
{ |
|
|
|
label: "最高学历", name: "HighestRecord", width: 100, align: "left", |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('custmerData', { |
|
|
|
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'BCdCultureDegree', |
|
|
|
learun.clientdata.getAsync('dataItem', { |
|
|
|
key: value, |
|
|
|
keyId: 'culturedegreeno', |
|
|
|
code: 'HighestEducation', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data['culturedegree']); |
|
|
|
callback(_data.text); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|