您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

20 行
654 B

  1. (function () {
  2. var page = {
  3. init: function ($page) {
  4. $page.find('#scan1').on('tap', function () {
  5. learun.code.scan(function (res) {
  6. if (res.status === 'success') {
  7. learun.layer.toast(res.msg);
  8. }
  9. else {
  10. learun.layer.toast('扫描失败:' + res.msg);
  11. }
  12. });
  13. });
  14. $page.find('#scan2').on('tap', function () {
  15. learun.code.encode({ id: 'qrcode1', text:'http://www.learun.cn/'});
  16. });
  17. }
  18. };
  19. return page;
  20. })();