fission-page.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  7. <link rel="stylesheet" href="css/weui.min.css"/>
  8. <link rel="stylesheet" href="css/weuix.min.css"/>
  9. <link rel="stylesheet" href="css/style.css">
  10. <script src="js/md5.js"></script>
  11. <script src="js/vue.min.js"></script>
  12. <script src="js/zepto.min.js"></script>
  13. <script src="js/zepto.weui.min.js"></script>
  14. <script src="js/php.js"></script>
  15. </head>
  16. <body>
  17. <div id="myApp">
  18. <span>{{id}}</span>
  19. <button onclick="isfollowqr('http://open.weixin.qq.com/qr/code?username=hszuqiu')">立即领取</button>
  20. </div>
  21. </body>
  22. <script>
  23. // wx.config({
  24. // debug: false,
  25. // appId: "<?php echo $signature['appId']; ?>",
  26. // timestamp: <?php echo $signature['timestamp']; ?> ,
  27. // nonceStr : "<?php echo $signature['nonceStr']; ?>",
  28. // signature: "<?php echo $signature['signature']; ?>",
  29. // jsApiList: [
  30. // 'imagePreview', 'chooseImage', 'uploadImage'
  31. // ]
  32. // });
  33. new Vue({
  34. el:'#myApp',
  35. data:{
  36. id:255
  37. },
  38. methods:{},
  39. mounted(){
  40. }
  41. })
  42. </script>
  43. </html>