1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div>
- <button type="button" class="layui-btn layui-btn-normal" id="OAuth">微信网页授权</button>
- </div>
-
- </body>
- <script>
- const moduleInit = ['tool'];
- function gouguInit() {
- var form = layui.form, tool = layui.tool, upload = layui.upload;
- //刷新二维码
- $('#OAuth').click(function(e){
-
- // var loadIndex = layer.msg('请稍等...', {
- // icon: 16,
- // shade: 0.01
- // });;
-
- $.ajax({
- url: "/wechat/officialaccount/OAuth",
- type: 'get',
- // success: function (res) {
- // $('#codebox').attr('src',res)
- // layer.close(loadIndex)
- // }
- })
- });
-
- }
- </script>
- </html>
|