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.
 
 
 
 
 
 

39 lines
1.1 KiB

  1. (function () {
  2. var keyValue = '';
  3. var $header = null;
  4. var page = {
  5. isScroll: true,
  6. init: function ($page, param) {
  7. keyValue = param.keyValue;
  8. // 添加头部按钮列表
  9. $header = $page.parents('.f-page').find('.f-page-header');
  10. // 取消
  11. $page.find('#aa').on('tap', function () {
  12. learun.nav.go({ path: 'EducationalAdministration/StudentQRCode/Normal', title: '正常', type: 'right' });
  13. });
  14. $page.find('#bb').on('tap', function () {
  15. learun.nav.go({ path: 'EducationalAdministration/StudentQRCode/AbNormalWeak', title: '异常微弱', type: 'right' });
  16. });
  17. $page.find('#cc').on('tap', function () {
  18. learun.nav.go({ path: 'EducationalAdministration/StudentQRCode/AbNormalSerious', title: '异常严重', type: 'right' });
  19. });
  20. },
  21. bind: function ($page, param) {
  22. }, destroy: function (pageinfo) {
  23. $header = null;
  24. keyValue = '';
  25. }
  26. };
  27. //上传照片
  28. })();