index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
  8. />
  9. <!-- 清除缓存 -->
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  11. <meta http-equiv="X-UA-Compatible" content="IE=8">
  12. <meta http-equiv="Expires" content="0">
  13. <meta http-equiv="Pragma" content="no-cache">
  14. <meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate">
  15. <meta http-equiv="Cache" content="no-cache">
  16. <title></title>
  17. <!--preload-links-->
  18. <!--app-context-->
  19. </head>
  20. <body>
  21. <div id="app">
  22. <div style="margin-top: 250px;font-size: 30px;color: #777;text-align: center;">正在疯狂加载...</div>
  23. </div>
  24. <script type="module" src="/main.js"></script>
  25. </body>
  26. <script>
  27. // js清除缓存
  28. const refresh_page = localStorage.getItem('refresh_page')
  29. if (refresh_page !== '1') {
  30. localStorage.setItem('refresh_page', '1')
  31. location.reload()
  32. } else {
  33. localStorage.setItem('refresh_page', '0')
  34. }
  35. </script>
  36. <style>
  37. #app{
  38. letter-spacing: 1rpx !important;
  39. }
  40. </style>
  41. </html>