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.
 
 
 
 
 
 

15 lines
427 B

  1. (function () {
  2. var page = {
  3. init: function ($page) {
  4. $page.find('#getpage1').on('tap', function () {
  5. var prepage = learun.nav.getpage('demo');
  6. if (prepage) {
  7. learun.layer.toast('获取成功');
  8. } else {
  9. learun.layer.toast('获取失败');
  10. }
  11. });
  12. }
  13. };
  14. return page;
  15. })();