| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
- <link rel="stylesheet" href="css/weui.min.css"/>
- <link rel="stylesheet" href="css/weuix.min.css"/>
- <link rel="stylesheet" href="css/style.css">
- <script src="js/md5.js"></script>
- <script src="js/vue.min.js"></script>
- <script src="js/zepto.min.js"></script>
- <script src="js/zepto.weui.min.js"></script>
- <script src="js/php.js"></script>
- </head>
- <body>
- <div id="myApp">
- <span>{{id}}</span>
- <button onclick="isfollowqr('http://open.weixin.qq.com/qr/code?username=hszuqiu')">立即领取</button>
- </div>
- </body>
- <script>
- // wx.config({
- // debug: false,
- // appId: "<?php echo $signature['appId']; ?>",
- // timestamp: <?php echo $signature['timestamp']; ?> ,
- // nonceStr : "<?php echo $signature['nonceStr']; ?>",
- // signature: "<?php echo $signature['signature']; ?>",
- // jsApiList: [
- // 'imagePreview', 'chooseImage', 'uploadImage'
- // ]
- // });
- new Vue({
- el:'#myApp',
- data:{
- id:255
- },
- methods:{},
- mounted(){
- }
- })
- </script>
- </html>
|