| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
-
- <!-- hard fixed by jack 20200613 -->
- <!-- 在部署 http 网站的时候,要把下面的一行配置注释掉 -->
-
- <!-- 加这个的原因是 asset.html 要访问 websocket,其中 websocket 是本地的ws不是wss,如果网页是通过https访问的,那么也要求websocket是 ws的 -->
- <!-- 把http请求转化为https请求。这样就不会再出现Mixed Content的错误了。
- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">-->
- <title>prodog</title>
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/font-awesome/css/font-awesome.min.css">
-
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/trumbowyg/css/trumbowyg.min.css">
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/cropper/dist/cropper.css">
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/colResizable/colResizable-1.6.css">
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./static/jQuery-ResizableColumns/jQuery.resizableColumns.css">
- <link nonce="*NONCE_TOKEN_CSS*" rel="stylesheet" type="text/css" href="./api/file/getThemeCss">
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jquery/dist/jquery.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jquery.cookie/jquery.cookie.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/table-fixer.jquery/table-fixer.jquery.js"></script>
-
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/cropper/dist/cropper.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/colResizable/colResizable-1.6.js"></script>
- <!-- 富文本编辑器 -->
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/trumbowyg/js/trumbowyg.min.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/trumbowyg/js/trumbowyg.upload.min.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/trumbowyg/js/trumbowyg.zh_cn.min.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/jQuery-ResizableColumns/jQuery.resizableColumns.js"></script>
- <!-- <script src=".../static/js/api.js"></script> -->
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/reconnecting-websocket/reconnecting-websocket.js"></script>
-
- <!-- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/plugin/dingtalk-jsapi/2.10.3/dingtalk.open.js"></script> -->
- <!--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.
- 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. -->
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue/dist/vue.global.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue-i18n/dist/vue-i18n.global.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vuex/dist/vuex.global.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/vue-router/dist/vue-router.global.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/dayjs/dayjs.min.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/axios/dist/axios.js"></script>
- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/sortablejs/Sortable.js"></script>
- <!-- <script nonce="*NONCE_TOKEN*" type="text/javascript" src="./static/wangEditor/index.js"></script> -->
- <script nonce="*NONCE_TOKEN*" type="text/javascript">
- var nonce_token = "*NONCE_TOKEN*";
- </script>
- </head>
- <body>
- <div id="app">
- </div>
- <div id="refreshCount"></div>
- <script defer="defer" nonce="*NONCE_TOKEN*" src="./static/echarts/dist/echarts.min.js"></script>
- <!-- <script src=".../static/js/fullscreen-api.js"></script> -->
- <!-- <script src=".../static/js/problem-feedback-api.js"></script> -->
- </body>
- </html>
|