正在显示
3 个修改的文件
包含
38 行增加
和
1 行删除
@@ -182,8 +182,11 @@ class CenterController extends HomeBaseController | @@ -182,8 +182,11 @@ class CenterController extends HomeBaseController | ||
182 | } else { | 182 | } else { |
183 | $view = ':charge2'; | 183 | $view = ':charge2'; |
184 | } | 184 | } |
185 | + require_once EXTEND_PATH . '/WeChatCommon.php'; | ||
186 | + $wx = new \WeChatCommon(); | ||
185 | return $this->fetch($view, [ | 187 | return $this->fetch($view, [ |
186 | - 'data' => $res | 188 | + 'data' => $res, |
189 | + 'js_sdk' => $wx->js_sdk() | ||
187 | ]); | 190 | ]); |
188 | } | 191 | } |
189 | } | 192 | } |
@@ -12,6 +12,7 @@ | @@ -12,6 +12,7 @@ | ||
12 | <script type="text/javascript" src="__TMPL__/static/assets/font/iconfont.js"> | 12 | <script type="text/javascript" src="__TMPL__/static/assets/font/iconfont.js"> |
13 | </script> | 13 | </script> |
14 | <link rel="stylesheet" href="__TMPL__/static/css/myWallet.css" /> | 14 | <link rel="stylesheet" href="__TMPL__/static/css/myWallet.css" /> |
15 | + <script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script> | ||
15 | </head> | 16 | </head> |
16 | 17 | ||
17 | <body> | 18 | <body> |
@@ -50,4 +51,20 @@ | @@ -50,4 +51,20 @@ | ||
50 | $(this).siblings().attr('class','btn'); | 51 | $(this).siblings().attr('class','btn'); |
51 | }) | 52 | }) |
52 | 53 | ||
54 | + wx.config({ | ||
55 | + debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 | ||
56 | + appId: '{$js_sdk.appId}', // 必填,公众号的唯一标识 | ||
57 | + timestamp: '{$js_sdk.timestamp}', // 必填,生成签名的时间戳 | ||
58 | + nonceStr: '{$js_sdk.nonceStr}', // 必填,生成签名的随机串 | ||
59 | + signature: '{$js_sdk.signature}',// 必填,签名 | ||
60 | + jsApiList: [ | ||
61 | + 'chooseWXPay' | ||
62 | + ] // 必填,需要使用的JS接口列表 | ||
63 | + }); | ||
64 | + | ||
65 | + $(".ok").click(function () { | ||
66 | + var id = $(".active").attr('data-id') | ||
67 | + alert(id); | ||
68 | + }) | ||
69 | + | ||
53 | </script> | 70 | </script> |
@@ -12,6 +12,7 @@ | @@ -12,6 +12,7 @@ | ||
12 | <script type="text/javascript" src="__TMPL__/static/assets/font/iconfont.js"> | 12 | <script type="text/javascript" src="__TMPL__/static/assets/font/iconfont.js"> |
13 | </script> | 13 | </script> |
14 | <link rel="stylesheet" href="__TMPL__/static/css/myWallet.css" /> | 14 | <link rel="stylesheet" href="__TMPL__/static/css/myWallet.css" /> |
15 | + <script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script> | ||
15 | </head> | 16 | </head> |
16 | 17 | ||
17 | <body> | 18 | <body> |
@@ -50,4 +51,20 @@ | @@ -50,4 +51,20 @@ | ||
50 | $(this).siblings().attr('class','btn'); | 51 | $(this).siblings().attr('class','btn'); |
51 | }) | 52 | }) |
52 | 53 | ||
54 | + wx.config({ | ||
55 | + debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 | ||
56 | + appId: '{$js_sdk.appId}', // 必填,公众号的唯一标识 | ||
57 | + timestamp: '{$js_sdk.timestamp}', // 必填,生成签名的时间戳 | ||
58 | + nonceStr: '{$js_sdk.nonceStr}', // 必填,生成签名的随机串 | ||
59 | + signature: '{$js_sdk.signature}',// 必填,签名 | ||
60 | + jsApiList: [ | ||
61 | + 'chooseWXPay' | ||
62 | + ] // 必填,需要使用的JS接口列表 | ||
63 | + }); | ||
64 | + | ||
65 | + $(".ok").click(function () { | ||
66 | + var id = $(".active").attr('data-id') | ||
67 | + alert(id); | ||
68 | + }) | ||
69 | + | ||
53 | </script> | 70 | </script> |
-
请 注册 或 登录 后发表评论