mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 08:46:43 +08:00
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<title>金掌桂-应用下载</title>
|
|
<style>
|
|
.android_bg {
|
|
height: 100%;
|
|
background-color: #000;
|
|
}
|
|
|
|
#coverImg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<img id="coverImg" src="" alt="" />
|
|
<script>
|
|
var userAgent = navigator.userAgent
|
|
var isAndroid = /android/gi.test(userAgent)
|
|
var isIDevice = /iphone|ipad/gi.test(userAgent)
|
|
var URL = {
|
|
android_download_url: 'https://iagentsales-sr.e-guofu.com:8443/gfrs/apk/GfLife.apk',
|
|
ios_download_url: 'https://apps.apple.com/cn/app/id1483906479'
|
|
}
|
|
if (isAndroid) {
|
|
location.replace(URL.android_download_url)
|
|
document.body.setAttribute('class', 'android_bg')
|
|
var coverImg = document.getElementById('coverImg')
|
|
coverImg.src = 'https://mobile.dingchenglife.com.cn:7001/images/cover_bg.png'
|
|
|
|
} else if (isIDevice) {
|
|
location.replace(URL.ios_download_url)
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html> |