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.
 
 
 
 
 
 

41 lines
1.5 KiB

  1. (function () {
  2. var page = {
  3. isScroll: false,
  4. init: function ($page) {
  5. // 获取登录者信息
  6. var userinfo = learun.storage.get('userinfo');
  7. //数据绑定
  8. learun.httpget(config.webapi + "StuInfoFresh/stuInfoFreshEntity", userinfo.baseinfo.account, (data) => {
  9. if (data) {
  10. var entity = data['StuInfoFreshEntity'];
  11. if (entity != null) {
  12. $('#StuName').html(entity.StuName);
  13. $('#StuNo').html(entity.StuNo);
  14. $('#DeptNo').html(entity.DeptNo);
  15. $('#MajorNo').html(entity.MajorNo);
  16. $('#ClassNo').html(entity.ClassNo);
  17. $('#ClassTutorName').html(entity.ClassTutorName);
  18. $('#ClassTutorMobile').html(entity.ClassTutorMobile);
  19. $('#PayFeeStatus').html(entity.PayFeeStatus == "1" ? "已缴费" : "未缴费");
  20. $('#CollectFileStatus').html(entity.CollectFileStatus == "1" ? "已提交" : "未提交");
  21. $('#GetKeyStatus').html(entity.GetKeyStatus == "1" ? "已领取" : "未领取");
  22. $('#IsCompleteInfo').html(entity.IsCompleteInfo);
  23. $('#Dormitory').html(entity.DormitoryName);
  24. }
  25. }
  26. });
  27. },
  28. bind: function ($page) {
  29. }
  30. };
  31. return page;
  32. })();