|
|
@@ -105,7 +105,22 @@ var bootstrap = function ($, learun) { |
|
|
|
url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=bjsj', |
|
|
|
param: { strWhere: "1=1 AND CheckMark=1" }, |
|
|
|
value: "classno", |
|
|
|
text: "classname" |
|
|
|
text: "classname", |
|
|
|
select: function (item) { |
|
|
|
if (item) { |
|
|
|
$('#StuNo').lrselectRefresh({ |
|
|
|
allowSearch: true, |
|
|
|
url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=StuInfoBasic', |
|
|
|
param: { strWhere: "classno='" + item.classno + "'" } |
|
|
|
}); |
|
|
|
} else { |
|
|
|
$('#StuNo').lrselectRefresh({ |
|
|
|
allowSearch: true, |
|
|
|
url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=StuInfoBasic', |
|
|
|
param: { strWhere: "1=1" } |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
$('#StuNo').lrDataSourceSelect({ code: 'StuInfoBasic', value: 'stuno', text: 'stuname' }); |
|
|
|
$('#Files').lrUploader(); |
|
|
|