index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta content="IE=edge" http-equiv="X-UA-Compatible">
  6. <meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
  7. name="viewport">
  8. <link href="<%= BASE_URL %>favicon.png" rel="icon">
  9. <script src="./config/global.js"></script>
  10. <title>心理胜任能力评估系统</title>
  11. <style>
  12. html,
  13. body {
  14. width: 100%;
  15. height: 100%;
  16. touch-action: none;
  17. touch-action: pan-y;
  18. }
  19. </style>
  20. </head>
  21. <script>
  22. var prod = false;
  23. var baseUrl = prod ? env.prod : env.dev;
  24. var photoUrl = prod ? env.photoUrl : env.photoUrl;
  25. var systemUrl = env.systemUrl;
  26. var scoketUrl = env.scoketUrl;
  27. //禁用移动端左右滑动返回
  28. var startX;
  29. document.addEventListener("touchstart", function (e) {
  30. startX = e.targetTouches[0].pageX
  31. });
  32. document.addEventListener("touchmove", function (e) {
  33. var moveX = e.targetTouches[0].pageX;
  34. if (Math.abs(moveX - startX) > 0) {
  35. e.preventDefault();
  36. }
  37. });
  38. </script>
  39. <body>
  40. <noscript>
  41. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  42. Please enable it to continue.</strong>
  43. </noscript>
  44. <div id="app"></div>
  45. <!-- built files will be auto injected -->
  46. </body>
  47. </html>