2026-04-30 14:03:04 +08:00

24 lines
790 B
HTML

<!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>
<script>
var target = new URL("https://h5.haiyihy.com/hyapp/recharge-center/index.html")
var source = new URL(window.location.href)
source.searchParams.forEach(function (value, key) {
target.searchParams.set(key, value)
})
target.searchParams.set("h5v", "20260429-0330")
target.searchParams.set("apiBase", "https://jvapi.haiyihy.com")
target.searchParams.set("goApiBase", "https://jvapi.haiyihy.com/go")
// &apiBase=https%3A%2F%2Fjvapi.haiyihy.com&goApiBase=https%3A%2F%2Fjvapi.haiyihy.com%2Fgo
window.location.replace(target.toString())
</script>
</body>
</html>