50 lines
2.2 KiB
HTML
50 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>
|
|
<%= htmlWebpackPlugin.options.title %>
|
|
</title>
|
|
<!-- Open Graph data -->
|
|
<!-- <meta property="og:title" content="Title Here" /> -->
|
|
<!-- <meta property="og:url" content="http://www.example.com/" /> -->
|
|
<!-- <meta property="og:image" content="http://example.com/image.jpg" /> -->
|
|
<!-- <meta property="og:description" content="Description Here" /> -->
|
|
<script>
|
|
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS
|
|
.supports(
|
|
'top: constant(a)'))
|
|
document.write(
|
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
|
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
|
</script>
|
|
<link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>Please enable JavaScript to continue.</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
<script type="text/javascript">
|
|
var userAgent = navigator.userAgent;
|
|
if (userAgent.indexOf('AlipayClient') > -1) {
|
|
// 支付宝小程序的 JS-SDK 防止 404 需要动态加载,如果不需要兼容支付宝小程序,则无需引用此 JS 文件。
|
|
document.writeln('<script src="https://appx/web-view.min.js"' + '>' + '<' + '/' + 'script>');
|
|
}
|
|
</script>
|
|
<script src="https://gw.alipayobjects.com/as/g/h5-lib/alipayjsapi/3.1.1/alipayjsapi.min.js"></script>
|
|
<script type="text/javascript" src="https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.1.5.2.js"></script>
|
|
<script type="text/javascript" src="./js/uni.webview.js"></script>
|
|
<script type="text/javascript">
|
|
// 待触发 `UniAppJSBridgeReady` 事件后,即可调用 uni 的 API。
|
|
document.addEventListener('UniAppJSBridgeReady', function() {
|
|
|
|
uni.webView.getEnv(function(res) {
|
|
console.log('当前环境:' + JSON.stringify(res));
|
|
});
|
|
});
|
|
</script>
|
|
</html> |