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
  • footseen
  • phonepay
  • newvisaInfo.html
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 8e24e39a
    libai committed a year ago
    8e24e39a
newvisaInfo.html 4.57 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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
<!DOCTYPE html>
<html>

<head lang="en">
	<!-- Global site tag (gtag.js) - Google Analytics -->
	<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/fsize.js'></script>
	<title></title>
	<style>
		.main {
			width: 10rem;
			margin: 0 auto;
			position: relative;
			background-color: #FFF;
			min-height: 100vh;
		}

		.mTitle {
			padding: .453rem;
			color: #FF57A0;
			font-size: .32rem;
		}

		.mBox {
			padding: 0 .453rem;
		}

		.mBoxName {
			font-size: .4rem;
			color: #FF57A0;
			margin: .667rem 0 .293rem;
		}

		.mBoxIpt {
			width: 100%;
			border: none;
			height: 1.173rem;
			border: .027rem solid #FF57A0;
			background-color: #FFF;
			border-radius: 0.133rem;
			text-indent: .32rem;
			color: #333;
		}

		input::-webkit-input-placeholder {
			color: #333;
		}

		input:-moz-placeholder {
			color: #333;
		}

		input::-moz-placeholder {
			color: #333;
		}

		input:-ms-input-placeholder {
			color: #333;
		}

		.mBtn {
			width: 8.533rem;
			height: 1.28rem;
			line-height: 1.28rem;
			text-align: center;
			border-radius: 0.666rem;
			background: #FF57A0;
			font-size: 0.453rem;
			color: #FFF;
			position: absolute;
			bottom: 2rem;
			left: 50%;
			margin-left: -4.266rem;
		}

		.mHead {
			width: 10rem;
			height: 1rem;
			position: relative;
			background: #fff;
			display: none;
		}

		.closeBtn {
			width: 0.64rem;
			height: 0.64rem;
			padding-left: 0.64rem;
			background: url(../img/back.png) no-repeat;
			background-size: contain;
			position: absolute;
			top: 0.18rem;
			left: 0.32rem;
			font-size: 0.32rem;
			line-height: 0.64rem;;
            white-space: nowrap;
		}

		.closeBtn>a {
			width: 100%;
			height: 100%;
			display: block;
		}
	</style>
</head>

<body>
	<div class="main">
		<div class="mHead">
			<div class="closeBtn"><a href="javascript:window.opener=null;window.open('','_self');window.close();">關閉</a>
			</div>
		</div>
		<p class="mTitle"></p>
		<div class="mBox">
			<p class="mBoxName mBoxName4"></p>
			<input class="mBoxIpt iptEmali" oninput="if(value.length>100)value=value.slice(0,100)" />
		</div>
		<div class="mBtn"></div>
	</div>
	<script src="../lib/jquery-3.1.1.min.js"></script>
	<script src="../lib/payLangchange.js?v=202301041916"></script>
	<script src="../layer-v3.1.0/layer/layer.js"></script>
	<script type="text/javascript">

		var _url = 'https://firefly.live/h5pay';

		$('title').text(langList[langType].paytitle);
		$('.mTitle').text(langList[langType].titleName);

		$('.mBoxName4').text(langList[langType].email);
		$('.iptEmali').attr('placeholder', langList[langType].enterEmail);
		$('.mBtn').text(langList[langType].submitName);
		if (url_get_params().os == 'h5') {
			$('.mHead').show();
		}
		//獲取url參數
		function url_get_params() {
			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;
		}
		$('.mBtn').on('click', function () {

			var email = $('.iptEmali').val().replace(/(^\s*)|(\s*$)/g, "");
			if (!email && email.length == 0) {
				layer.msg(langList[langType].msg4);
				return false;
			}
			var reg = /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;
			if (!reg.test(email)) {
				layer.msg(langList[langType].msg5);
				return false;
			}
			$.ajax({
				url: $ip + "/pay/toGloCashPay.html",
				type: "POST",
				data: {
					os: sessionStorage.osStr,
					cid: sessionStorage.cidStr,
					lang: sessionStorage.lang,
					uid: sessionStorage.uid,
					country: '86',
					rid: sessionStorage.rid,
					amount: sessionStorage.money * 100,
					returnUrl: _url + '/phonepay/paySuccess2.html?lang=' + sessionStorage.lang,
					failureUrl: _url + '/phonepay/payFail2.html?lang=' + sessionStorage.lang,
					email: email,
					product: langList[langType].visatitle,
					payType: sessionStorage.pay,
				},
				success: function (res) {
					var data = JSON.parse(res);
					console.log(data);
					if (data.code == 1) {
						window.location.href = data.url;
					} else {
						layer.msg(data.msg);
					}
				}
			})

		})

	</script>
</body>

</html>