fission-page.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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" class="bg-box">
  18. <img alt="" class="headImg-box" :src=headSrc>
  19. <div class="content-box">
  20. <img alt="" :src=contentSrc />
  21. </div>
  22. <div class="num-box">已有 <span style="color: #A4404E">{{num}}</span> 人领取成功</div>
  23. <img class="get-btn-box" src="image/get-free.gif" alt="" onclick="isfollowqr('http://open.weixin.qq.com/qr/code?username=hszuqiu')" />
  24. </div>
  25. </body>
  26. <script>
  27. // wx.config({
  28. // debug: false,
  29. // appId: "<?php echo $signature['appId']; ?>",
  30. // timestamp: <?php echo $signature['timestamp']; ?> ,
  31. // nonceStr : "<?php echo $signature['nonceStr']; ?>",
  32. // signature: "<?php echo $signature['signature']; ?>",
  33. // jsApiList: [
  34. // 'imagePreview', 'chooseImage', 'uploadImage'
  35. // ]
  36. // });
  37. new Vue({
  38. el:'#myApp',
  39. data:{
  40. num:52255,
  41. headSrc:'image/headImg.png',
  42. contentSrc:"image/content-bg.png"
  43. },
  44. methods:{},
  45. mounted(){
  46. }
  47. })
  48. </script>
  49. </html>