generated from zhaoxingchang/i-tax-management-front-lxzy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.1 KiB
56 lines
2.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
|
|
<link rel="stylesheet" type="text/css" href="../../css/base.css?v=1.0.7" />
|
|
<link rel="stylesheet" type="text/css" href="../../css/wxscaninvoice/writing.css?v=1.0.7" />
|
|
|
|
<script src="../../js/common/base.js?v=1.0.7" type="text/javascript" charset="utf-8"></script>
|
|
<script src="../../js/lib/jweixin-1.1.0.js" type="text/javascript" charset="utf-8"></script>
|
|
<script src="../../js/lib/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script>
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="busy_info">
|
|
<img class="error_icon" src="../../image/wxscaninvoice/error_icon.png" alt=""/>
|
|
<p class="error_tip"></p>
|
|
<div class="myInvoice_con">
|
|
<img alt="" class="myInvoice_pic" src="" />
|
|
<p class="myInvoice_tip">长按识别二维码后关注公众号</p>
|
|
</div>
|
|
<div class="bottom_con">
|
|
<p>如问题无法解决,请联系商家或拨打客服电话</p>
|
|
<p>400-8198018</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
$(function () {
|
|
const errorNum = getUrlArgumentValue('num');
|
|
if (errorNum === 1) {
|
|
$('.error_tip').html('二维码已失效');
|
|
} else if (errorNum === 2) {
|
|
$('.error_tip').html('二维码异常,请联系商家');
|
|
} else if (errorNum === 3) {
|
|
$('.error_tip').html('此张发票超限额,请联系管理员开票。');
|
|
} else if (errorNum === 4) {
|
|
$('.error_tip').html('二维码不存在,请联系商家');
|
|
} else {
|
|
$('.error_tip').html('系统繁忙,请稍后重试');
|
|
}
|
|
const subscribe = window.localStorage.getItem("subscribe");
|
|
const ewm = window.localStorage.getItem("ewm");
|
|
const prePath = '../../image/wxscaninvoice/';
|
|
const defaultLogoPath = prePath + 'myfp_16.png';
|
|
if (ewm === "" || ewm == null || ewm === undefined) {
|
|
$(".myInvoice_pic").attr("src", defaultLogoPath);
|
|
} else {
|
|
$(".myInvoice_pic").attr("src", prePath + ewm);
|
|
}
|
|
})
|
|
</script>
|
|
|
|
</html>
|
|
|