123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>最奇葩的请假理由</title>
- <script src="public/weChatShare.js?v=3"></script>
- <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
- <link rel="stylesheet" type="text/css" href="public/public_css.css?v=6"/>
- <style type="text/css">
- body{ min-height:100vh;background: #EECD02;}
- .container{height:6.66rem;background: url(images/index2.png) no-repeat;background-size: 100% 100%;}
- .leave_submit{width:2.54rem;height:0.955rem;margin:auto;background:url(images/btn.png) no-repeat;background-size:100%;position: absolute; top: 4.9rem;left: 0;right: 0;}
- </style>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- </head>
- <body>
- <div class="container">
- <div class="leave_submit"></div>
- </div>
-
- </body>
- </html>
- <script type="text/javascript" src="public/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- var flag = true;
- $().ready(function(){
- shareFriend();
- })
- $(".leave_submit").click(function(){
- window.location.href = 'leaveInfo.html'
- })
- function shareFriend () {
- //微信sdk分享验证信息
- $.ajax({
- type:"post",
- url:"/api/V2/jsonConfig",
- dataType:"json",
- data:{
- url:location.href
- },
- success: function (res) {
- if(res && res.code == 0){
- wexinPay(location.href,res.res,() => {
- // 分享成功
- $(".shareMask").css('display','none')
- },() => {
- showMsg("分享失败")
- flag = false;
- },() => {
- //微信审核为通过
- flag = false;
- })
- }else{
- flag = false;
- }
- if(!flag){
- //分享不成功
- setTimeout(function () {
- $(".shareMask").css('display','none')
- },3000)
- }
- }
- })
- }
- </script>
|