Files
company_h5/public/index.html

33 lines
1019 B
HTML
Raw Normal View History

2022-08-08 09:32:04 +08:00
<!DOCTYPE html>
<html lang="">
<head>
<meta name="referrer" content="no-referrer">
<meta name="theme-color" content="#ff6700">
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" >
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2022-08-29 09:45:23 +08:00
<link rel="icon" href="<%= BASE_URL %>logo.png">
<title><%= webpackConfig.name %></title>
2022-08-08 09:32:04 +08:00
</head>
<body>
<noscript>
2022-08-29 09:45:23 +08:00
<strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
2022-08-08 09:32:04 +08:00
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<script>
function xxx (res){
alert(res)
}
document.addEventListener('touchstart', function(event) {
if (event.touches.length > 1) {
event.preventDefault()
}
})
document.addEventListener('gesturestart', function (event) {
event.preventDefault()
})
</script>