29 lines
837 B
HTML
29 lines
837 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- 禁止双击缩放-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
|
<title>悦联</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
<script>
|
|
// ios 禁止缩放
|
|
window.onload = function () {
|
|
document.addEventListener("touchstart", function (event) {
|
|
if (event.touches.length > 1) {
|
|
event.preventDefault();
|
|
}
|
|
});
|
|
document.addEventListener("gesturestart", function (event) {
|
|
event.preventDefault();
|
|
});
|
|
};
|
|
</script>
|
|
</html>
|