Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / fireflyReg

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • fireflyReg
  • h5pay
  • phonepay
  • paySuccess.html
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 8e24e39a
    libai committed a year ago
    8e24e39a
paySuccess.html 2.79 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
<!DOCTYPE html>
<html>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta content="telephone=no" name="format-detection">
<meta name="wap-font-scale" content="no">
<link rel="stylesheet" href="../css/base.css" />
<script src="../lib/jquery-3.1.1.min.js"></script>
<title></title>
<script src="../lib/fsize.js"></script>
</head>
<style>
	body {
		background: #11101A;
	}

	span {
		color: #ffffff;
	}

	p {
		color: #ffffff;
	}

	.text-center {
		text-align: center;
	}

	.btnAnother {
		width: 4rem;
		height: 1.067rem;
		background: url(../img/btnBg.png) no-repeat;
		background-size: 100% 100%;
		margin: 0 auto;
		margin-top: 0.8rem;
		text-align: center;
		line-height: 1.067rem;
		color: #fff;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.btnAgain {
		width: 4rem;
		height: 1.067rem;
		background: url(../img/btnBg.png) no-repeat;
		background-size: 100% 100%;
		margin: 0 auto;
		margin-top: 0.8rem;
		text-align: center;
		line-height: 1.067rem;
		color: #fff;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
</style>

<body>


	<div class="text-center" style="padding-top: 3rem;">
		<img style="width: 5rem;" src="../img/ok.png">
		<p class="payTitle" style="margin-top: 2rem;font-size: 0.5rem"></p>

	</div>
	<div class="btnAnother"></div>
	<div class="btnAgain"></div>
</body>
<script src="../lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
	sessionStorage.lang = getUrlParams().lang;
	sessionStorage.type = getUrlParams().type;
	function getUrlParams() {
		var url = location.href;
		var theRequest = new Object();
		if (url.indexOf("?") != -1) {
			var str = url.substr(url.indexOf("?") + 1);
			strs = str.split("&");
			for (var i = 0; i < strs.length; i++) {
				theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
			}
		}
		return theRequest;
	}
</script>
<script src="../lib/payLangchange.js?v=202007081146666666"></script>
<script>
	$('title').html(langList[langType].visatitle);
	$('.payTitle').html(langList[langType].delay);
	$('.btnAnother').html(langList[langType].newPay5);
	$('.btnAgain').html(langList[langType].newPay4);
	var url = location.href;
	var str = url.substr(url.indexOf("?") + 1);
	var url_ = "https://firefly.live/h5pay/phonepay/applepay.html?" + str;
	$('.btnAnother').on('click', function () {
		sessionStorage.removeItem('uid');
		window.location.href = url_;
	})
	$('.btnAgain').on('click', function () {
		window.location.href = url_;
	})


	// if (getRequest().type == 'h5') {
	// 	setTimeout(function () {
	// 		window.location.href = 'https://www.firefly.live/';
	// 	}, 3000)
	// }
</script>

</html>