You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
1.3 KiB

  1. (function () {
  2. var page = {
  3. isScroll: false,
  4. init: function ($page) {
  5. //Êý¾Ý°ó¶¨
  6. learun.httpget(config.webapi + "StuInfoFresh/stuInfoFreshEntity", {}, (data) => {
  7. if (data) {
  8. var entity = data['StuInfoFreshEntity'];
  9. if (entity != null) {
  10. $('#StuName').html(entity.StuName);
  11. $('#StuNo').html(entity.StuNo);
  12. $('#DeptNo').html(entity.DeptNo);
  13. $('#MajorNo').html(entity.MajorNo);
  14. $('#ClassNo').html(entity.ClassNo);
  15. $('#ClassTutorName').html(entity.ClassTutorName);
  16. $('#ClassTutorMobile').html(entity.ClassTutorMobile);
  17. $('#PayFeeStatus').html(entity.PayFeeStatus);
  18. $('#CollectFileStatus').html(entity.CollectFileStatus);
  19. $('#GetKeyStatus').html(entity.GetKeyStatus);
  20. $('#ClassTutorNo').html(entity.ClassTutorNo);
  21. $('#Dormitory').html(entity.DormitoryName);
  22. }
  23. }
  24. });
  25. },
  26. bind: function ($page) {
  27. }
  28. };
  29. return page;
  30. })();