| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <!--
- * @Author: cyy szjbdcyy@126.com
- * @Date: 2026-07-02 16:07:31
- * @LastEditors: cyy szjbdcyy@126.com
- * @LastEditTime: 2026-07-02 16:14:26
- * @FilePath: \zdqy_firm_former-1\public\index.html
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- -->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="renderer" content="webkit" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
- />
- <!-- 将http转化为https -->
- <!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> -->
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <!-- 使用 CDN 加速的 CSS 文件,配置在 vue.config.js 下 -->
- <% for (var i in
- htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
- <link
- href="<%= htmlWebpackPlugin.options.cdn.css[i] %>"
- rel="preload"
- as="style"
- />
- <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet" />
- <% } %>
- <!-- 使用 CDN 加速的 JS 文件,配置在 vue.config.js 下 -->
- <% for (var i in
- htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
- <link
- href="<%= htmlWebpackPlugin.options.cdn.js[i] %>"
- rel="preload"
- as="script"
- />
- <% } %>
- <!-- 使用luckysheet文件 -->
- <!-- <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/luckysheet/dist/plugins/css/pluginsCss.css' />
- <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/luckysheet/dist/plugins/plugins.css' />
- <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/luckysheet/dist/css/luckysheet.css' />
- <link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/luckysheet/dist/assets/iconfont/iconfont.css' />
- <script src="https://cdn.jsdelivr.net/npm/luckysheet/dist/plugins/js/plugin.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/luckysheet/dist/luckysheet.umd.js"></script> -->
- <!-- 使用luckysheet文件 本地引入 -->
- <!-- 已移至 /luckysheet.html 独立页面,避免全局污染 -->
- <!--
- <link rel='stylesheet' href='lib/luckysheet/plugins/css/pluginsCss.css' />
- <link rel='stylesheet' href='lib/luckysheet/plugins/plugins.css' />
- <link rel='stylesheet' href='lib/luckysheet/css/luckysheet.css' />
- <link rel='stylesheet' href='lib/luckysheet/assets/iconfont/iconfont.css' />
- <script src="lib/luckysheet/plugins/js/plugin.js"></script>
- <script src="lib/luckysheet/luckysheet.umd.js"></script>
- -->
- <title><%= VUE_APP_TITLE %></title>
- <script
- type="text/javascript"
- src="/word/web-apps/apps/api/documents/api.js"
- ></script>
- <style>
- html,
- body,
- #app {
- height: 100%;
- margin: 0;
- padding: 0;
- }
- .ibps-home {
- background-color: #303133;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .ibps-home__main {
- user-select: none;
- width: 100%;
- flex-grow: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .ibps-home__footer {
- width: 100%;
- flex-grow: 0;
- text-align: center;
- padding: 1em 0;
- }
- .ibps-home__footer > a {
- font-size: 12px;
- color: #ababab;
- text-decoration: none;
- }
- .ibps-home__loading {
- height: 30px;
- width: 30px;
- margin-bottom: 10px;
- }
- .ibps-home__title {
- color: #fff;
- font-size: 14px;
- margin-bottom: 20px;
- }
- .ibps-home__sub-title {
- color: #ababab;
- font-size: 12px;
- }
- [data-loader='circle-side'] {
- position: relative;
- width: 25px;
- height: 25px;
- -webkit-animation: circle infinite 0.75s linear;
- -moz-animation: circle infinite 0.75s linear;
- -o-animation: circle infinite 0.75s linear;
- animation: circle infinite 0.75s linear;
- border: 2px solid #fff;
- border-top-color: rgba(0, 0, 0, 0.2);
- border-right-color: rgba(0, 0, 0, 0.2);
- border-bottom-color: rgba(0, 0, 0, 0.2);
- border-radius: 100%;
- }
- @-webkit-keyframes circle {
- 0% {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- -o-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-moz-keyframes circle {
- 0% {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- -o-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-o-keyframes circle {
- 0% {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- -o-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes circle {
- 0% {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- -o-transform: rotate(0);
- transform: rotate(0);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong> 敬请期待 </strong>
- </noscript>
- <div id="app">
- <div class="ibps-home">
- <div class="ibps-home__main">
- <div class="ibps-home__loading">
- <div data-loader="circle-side"></div>
- </div>
- <div class="ibps-home__title">正在加载资源 </div>
- <div class="ibps-home__sub-title"
- >初次加载资源可能需要较多时间 请耐心等待</div
- >
- </div>
- <div class="ibps-home__footer">
- <span id="copyright" target="_blank"></span>
- </div>
- </div>
- </div>
- <script
- type="text/javascript"
- async
- src="lib/mathjax/MathJax.js?config=TeX-MML-AM_CHTML"
- ></script>
- <!-- 使用 CDN 加速的 JS 文件,配置在 vue.config.js 下 -->
- <% for (var i in
- htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
- <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
- <% } %>
- <!-- built files will be auto injected -->
- <script>
- const currentYear = new Date().getFullYear()
- document.getElementById('copyright').textContent =
- '2020-' + currentYear + '©深圳市金源信通科技有限公司©版权所有'
- </script>
- </body>
- </html>
|