12345678910111213141516171819202122 |
- var inputData;
- function QueryCollegeDropdownList(data) {
- if (((data.length && data.length > 0) || data)) {
- inputData = top.$("#" + windowID).data("inputData");
- $("#CollegeDropdown").combobox("setValue", inputData.collegeID);
- }
- }
- function EducationScheduling_SubmitConfirm() {
- $(document.forms[0]).submit();
- }
- function FormSuccess(data) {
- $('a').removeAttr('disabled', 'disabled');
- $('#loading').hide();
- $.messager.alert('系统信息', data.Message, null, function () {
- if (data.IsSuccess) {
- top.$("#" + windowID).window('close');
- }
- });
- }
|