index-debug.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <!-- hard fixed by jack 20200613 -->
  7. <!-- 在部署 http 网站的时候,要把下面的一行配置注释掉 -->
  8. <!-- 加这个的原因是 asset.html 要访问 websocket,其中 websocket 是本地的ws不是wss,如果网页是通过https访问的,那么也要求websocket是 ws的 -->
  9. <!-- 把http请求转化为https请求。这样就不会再出现Mixed Content的错误了。
  10. <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">-->
  11. <title>prodog</title>
  12. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/font-awesome/css/font-awesome.min.css">
  13. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/bootstrap/dist/css/bootstrap.css">
  14. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/bootstrap/dist/css/bootstrap-theme.min.css">
  15. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/bootstrap3-dialog/dist/css/bootstrap-dialog.css">
  16. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/cropper/dist/cropper.css">
  17. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/colResizable/colResizable-1.6.css">
  18. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/jQuery-ResizableColumns/jQuery.resizableColumns.css">
  19. <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/summernote/dist/summernote.min.css">
  20. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jquery/dist/jquery.js"></script>
  21. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jquery.cookie/jquery.cookie.js"></script>
  22. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/table-fixer.jquery/table-fixer.jquery.js"></script>
  23. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/cropper/dist/cropper.js"></script>
  24. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/bootstrap/dist/js/bootstrap.js"></script>
  25. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/bootstrap3-dialog/dist/js/bootstrap-dialog.js"></script>
  26. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/colResizable/colResizable-1.6.js"></script>
  27. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jQuery-ResizableColumns/jQuery.resizableColumns.js"></script>
  28. <!-- <script src=".../static/js/api.js"></script> -->
  29. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/summernote/dist/summernote.min.js"></script>
  30. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/summernote/dist/lang/summernote-zh-CN.min.js"></script>
  31. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/reconnecting-websocket/reconnecting-websocket.js"></script>
  32. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/plugin/dingtalk-jsapi/2.10.3/dingtalk.open.js"></script>
  33. <!--VueJS has 2 different versions: the full version and the runtime version. 'unsafe-eval' is only needed for the full version of VueJS; the runtime version doesn't need it.
  34. The runtime-only build is fully CSP-compliant. When using the runtime-only build with Webpack + vue-loader or Browserify + vueify, your templates will be precompiled into render functions which work perfectly in CSP environments. -->
  35. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue/dist/vue.global.js"></script>
  36. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue-i18n/dist/vue-i18n.global.js"></script>
  37. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vuex/dist/vuex.global.js"></script>
  38. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue-router/dist/vue-router.global.js"></script>
  39. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/dayjs/dayjs.min.js"></script>
  40. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/axios/dist/axios.js"></script>
  41. <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/sortablejs/Sortable.js"></script>
  42. <script nonce="*NONCE_TOKEN*" type="text/javascript">
  43. var nonce_token = "*NONCE_TOKEN*";
  44. </script>
  45. </head>
  46. <body>
  47. <div id="app">
  48. </div>
  49. <div id="refreshCount"></div>
  50. <script defer="defer" nonce="*NONCE_TOKEN*" src="./static/echarts/dist/echarts.min.js"></script>
  51. <!-- <script src=".../static/js/fullscreen-api.js"></script> -->
  52. <!-- <script src=".../static/js/problem-feedback-api.js"></script> -->
  53. </body>
  54. </html>