何海涛 1 год назад
Родитель
Сommit
2e84e33030

BIN
public/download/board.png


+ 159 - 161
public/download/index.html

@@ -1,173 +1,171 @@
 <!DOCTYPE html>
 <html>
-  <head>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
-    <title>点击下载应用</title>
-    <style>
-      html,
-      body {
-        margin: 0;
-        padding: 0;
-        width: 100%;
-        height: 100%;
-      }
+<head>
+	<meta charset="UTF-8">
+	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
+	<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
+	<meta http-equiv="Pragma" content="no-cache" />
+	<meta http-equiv="Expires" content="0" />
+	<title>点击下载应用</title>
+	<style>
+	html, body { margin:0;padding:0;width: 100%;height: 100%; }
 
-      .layui-btn {
-        outline: 0;
-        -webkit-appearance: none;
-        transition: all .3s;
-        -webkit-transition: all .3s;
-        box-sizing: border-box;
-      }
+	.layui-btn {
+		outline: 0;
+		-webkit-appearance: none;
+		transition: all .3s;
+		-webkit-transition: all .3s;
+		box-sizing: border-box;
+	}
+	.layui-btn {
+		display: inline-block;
+		height: 38px;
+		line-height: 38px;
+		padding: 0 18px;
+		background-color: #009688;
+		color: #fff;
+		white-space: nowrap;
+		text-align: center;
+		font-size: 14px;
+		border: none;
+		border-radius: 2px;
+		cursor: pointer;
+	}
+	.layui-btn-warm {
+		background-color: #FFB800;
+	}
+	</style>
+</head>
+<body style="overflow: hidden;background-image:url('/download/board.png');background-position:center;background-size:100%;">
 
-      .layui-btn {
-        display: inline-block;
-        height: 38px;
-        line-height: 38px;
-        padding: 0 18px;
-        background-color: #009688;
-        color: #fff;
-        white-space: nowrap;
-        text-align: center;
-        font-size: 14px;
-        border: none;
-        border-radius: 2px;
-        cursor: pointer;
-      }
+	<div id="d1" style="display:none;text-align:center;">
+		<div style="margin-top:15%;">
+			<img src="./logo.png" style="width: 50%;" />
+		</div>
+		<button type="button" class="layui-btn layui-btn-warm" onclick="download();">点击下载</button>
+	</div>
 
-      .layui-btn-warm {
-        background-color: #FFB800;
-      }
-    </style>
-  </head>
-  <body style="overflow: hidden;background-position:center;background-size:100%;">
-    <div id="d1" style="display:none;text-align:center;">
-      <div>
-        <img src="./app_welcome.png" style="width: 100%; margin-top: -260px;" />
-      </div>
-      <button type="button" class="layui-btn layui-btn-warm" onclick="download();">点击下载</button>
-    </div>
-
-    <div id="d2" style="display:none;">
-      <!-- <img src="images/readme/download/路径 39@2x.png" style="width:30%;position:absolute;right:10%;top:3%;" /> -->
-      <div>
-        <img src="./app_welcome.png" style="width: 100%; margin-top: -40px;" />
-      </div>
-      <!-- <img src="images/readme/download/编组@2x.png" style="width:100%;" /> -->
-    </div>
-  </body>
+	<div id="d2" style="display:none;">
+		<img src="./path.png" style="width:30%;position:absolute;right:10%;top:3%;" />
+		<div style="text-align: center;border: 1px dashed #979797;margin: 30% 10% 30px;font-weight: bold;color: #414141;line-height: 1;">
+			<p>点击右上角</p>
+			<p>选择在浏览器中打开</p>
+		</div>
+		<img src="./snapshot.png" style="width:100%;" />
+	</div>
+</body>
 </html>
 
 <script type="text/javascript">
-  function getEnv() {
-    var hasOwnProp = Object.prototype.hasOwnProperty;
-    var brands = {
-      "IPHONE": "IPHONE|IPAD|IPOD|IOS",
-      "OPPO": "OPPO",
-      "VIVO": "VIVO",
-      "HONOR": "HONOR",
-      "HUAWEI": "HUAWEI",
-      "XIAOMI": "XIAOMI|REDMI",
-      "360": "1801-A01|1707-A01|1509-A00",
-      "SAMSUNG": "SAMSUNG",
-      "NUBIA": "NX"
-    };
-    var userAgent = window.navigator.userAgent.toUpperCase();
-    var is_weixin = (function() {
-      if (userAgent.match(/MicroMessenger/i) == "MICROMESSENGER") {
-        return true;
-      } else {
-        return false;
-      }
-    })();
-    var is_dingtalk = (function() {
-      if (userAgent.match(/DingTalk/i) == "DINGTALK") {
-        return true;
-      } else {
-        return false;
-      }
-    })();
-    for (var key in brands) {
-      if (hasOwnProp.call(brands, key)) {
-        brands[key] = new RegExp(brands[key], 'i');
-      }
-    }
-    /**
-     * 获取系统名称,安卓或者ios
-     */
-    function getOS() {
-      if (userAgent.indexOf("ANDROID") > -1) {
-        return "ANDROID";
-      } else if (userAgent.indexOf("IPHONE") > -1) {
-        return "IOS";
-      }
-    }
-    /**
-     * 获取设备品牌
-     */
-    function getBrand() {
-      var result = [];
-      for (var key in brands) {
-        if (hasOwnProp.call(brands, key)) {
-          if (brands[key].test(userAgent)) {
-            result.push(key);
-          }
+	function getEnv() {
+		var hasOwnProp = Object.prototype.hasOwnProperty;
+		var brands = {
+            "IPHONE": "IPHONE|IPAD|IPOD|IOS",
+            "OPPO": "OPPO",
+            "VIVO": "VIVO",
+            "HONOR": "HONOR",
+            "HUAWEI": "HUAWEI",
+            "XIAOMI": "XIAOMI|REDMI",
+            "360": "1801-A01|1707-A01|1509-A00",
+            "SAMSUNG": "SAMSUNG"
+        };
+		var userAgent = window.navigator.userAgent.toUpperCase();
+        var is_weixin = (function () {
+            if (userAgent.match(/MicroMessenger/i) == "MICROMESSENGER") {
+                return true;
+            } else {
+                return false;
+            }
+        })();
+        var is_dingtalk = (function () {
+            if (userAgent.match(/DingTalk/i) == "DINGTALK") {
+                return true;
+            } else {
+                return false;
+            }
+        })();
+        for (var key in brands) {
+            if (hasOwnProp.call(brands, key)) {
+                brands[key] = new RegExp(brands[key], 'i');
+            }
+        }
+		/**
+         * 获取系统名称,安卓或者ios
+         */
+        function getOS() {
+            if (userAgent.indexOf("ANDROID") > -1) {
+                return "ANDROID";
+            } else if (userAgent.indexOf("IPHONE") > -1) {
+                return "IOS";
+            }
+        }
+        /**
+         * 获取设备品牌
+         */
+        function getBrand() {
+            var result = [];
+            for (var key in brands) {
+                if (hasOwnProp.call(brands, key)) {
+                    if (brands[key].test(userAgent)) {
+                        result.push(key);
+                    }
+                }
+            }
+            return result[0];
         }
-      }
-      return result[0];
-    }
-    return {
-      os: getOS(),
-      brand: getBrand(),
-      is_weixin: is_weixin,
-      is_dingtalk: is_dingtalk
-    };
-  }
-  var env = getEnv();
-  if (env.os === "IOS") {
-    //window.location.href = "ltapp233307://app"; // IOS打开APP协议如:taobao://
-    window.setTimeout(function() {
-      window.location.href = "https://apps.apple.com/cn/app/%E5%90%8D%E5%AD%A6%E9%87%91%E6%A6%9C/id1583513014";
-    }, 2000);
-  } else {
-    if (env.is_weixin || env.is_dingtalk) {
-      document.getElementById('d2').style.display = 'block';
-    } else {
-      document.getElementById('d1').style.display = 'block';
+		return {
+			os:getOS(),
+        	brand: getBrand(),
+			is_weixin: is_weixin,
+			is_dingtalk: is_dingtalk
+		};
+	}
+	var env = getEnv();
+	if (env.os === "IOS") {
+		window.location.href ="ltapp233973://app";
+		window.setTimeout(function() {
+			//window.location.href = "https://itunes.apple.com/us/app/cheng-shi-gao-er-fu/id1008696844?mt=8&uo=4";
+			//window.location.href = "https://apps.apple.com/cn/app/id1535907152";
+			window.location.href = "https://apps.apple.com/cn/app/%E9%93%AD%E5%AD%A6%E7%99%BE%E4%BC%98/id1535907152";
+		}, 2000);
+	} else {
+		if (env.is_weixin || env.is_dingtalk) {
+			document.getElementById('d2').style.display = 'block';
+		} else {
+			document.getElementById('d1').style.display = 'block';
 
-      //window.location.href = "ltapp233307://app"; //安卓协议
-      window.setTimeout(function() {
-        download(env);
-      }, 2000)
-    }
-  }
+			window.location.href = "ltapp233973://app";//安卓协议
+			window.setTimeout(function() {
+				download(env);
+			}, 2000)
+		}
+	}
+	function download(env) {
+		env = env ? env : getEnv();
+		switch (env.brand) {
+			//case "HONOR":
+			//	window.location.href = 'intent://details?id=apk的包名#Intent;package=com.huawei.appmarket;scheme=market;end;';
+			//	break;
+			//case "HUAWEI":
+			//case "OPPO":
+			//	window.location.href = "market://details?id=apk的包名";
+			//	break;
+			//case "XIAOMI":
+			//	window.location = 'intent://details?id=apk的包名#Intent;package=com.xiaomi.market;scheme=market;end;';
+			//	break;
+			//case "VIVO":
+			//    window.location.href = 'intent://details?id=apk的包名#Intent;package=com.bbk.appstore;scheme=market;end;';
+			//    break;
+			//case "SAMSUNG":
+			//    window.location.href = "http://www.samsungapps.com/appquery/appDetail.as?appId=apk的包名";
+			//    break;
+			//case "360":
+			//    window.location.href = 'intent://details?id=apk的包名#Intent;package=com.qihoo.appstore;scheme=market;end;';
+			//    break;
+			default:
+				window.location.href = "https://a.app.qq.com/o/simple.jsp?pkgname=cn.fdzn.mxby";
+				break;
+		}
+	}
 
-  function download(env) {
-    env = env ? env : getEnv();
-    switch (env.brand) {
-      //case "HONOR":
-      //	window.location.href = 'intent://details?id=apk的包名#Intent;package=com.huawei.appmarket;scheme=market;end;';
-      //	break;
-      //case "HUAWEI":
-      //case "OPPO":
-      //	window.location.href = "market://details?id=apk的包名";
-      //	break;
-      //case "XIAOMI":
-      //	window.location = 'intent://details?id=apk的包名#Intent;package=com.xiaomi.market;scheme=market;end;';
-      //	break;
-      //case "VIVO":
-      //    window.location.href = 'intent://details?id=apk的包名#Intent;package=com.bbk.appstore;scheme=market;end;';
-      //    break;
-      //case "SAMSUNG":
-      //    window.location.href = "http://www.samsungapps.com/appquery/appDetail.as?appId=apk的包名";
-      //    break;
-      //case "360":
-      //    window.location.href = 'intent://details?id=apk的包名#Intent;package=com.qihoo.appstore;scheme=market;end;';
-      //    break;
-      default:
-        window.location.href = "https://a.app.qq.com/o/simple.jsp?pkgname=com.mingxuejinbang.mxjb";
-        break;
-    }
-  }
 </script>

BIN
public/download/logo.png


BIN
public/download/path.png


BIN
public/download/snapshot.png


BIN
src/assets/images/app.png