welcome.js 784 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //欢迎信息
  2. layer.config({
  3. extend: ['extend/layer.ext.js', 'skin/moon/style.css'],
  4. skin: 'layer-ext-moon'
  5. });
  6. layer.ready(function () {
  7. var html = $('#welcome-template').html();
  8. $('a.viewlog').click(function () {
  9. logs();
  10. return false;
  11. });
  12. $('#pay-qrcode').click(function () {
  13. var html = $(this).html();
  14. parent.layer.open({
  15. title: false,
  16. type: 1,
  17. closeBtn: false,
  18. shadeClose: true,
  19. area: ['600px', 'auto'],
  20. content: html
  21. });
  22. });
  23. function logs() {
  24. parent.layer.open({
  25. title: '初见倾心,再见动情',
  26. type: 1,
  27. area: ['700px', 'auto'],
  28. content: html,
  29. btn: ['确定', '取消']
  30. });
  31. }
  32. console.log('欢迎使用H+,如果您在使用的过程中有碰到问题,可以参考开发文档,感谢您的支持。');
  33. });