| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <!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">
- <% } %>
- <title>
- <%= VUE_APP_TITLE %>
- </title>
- <!-- <script type="text/javascript" src="http://192.168.48.129:9999/web-apps/apps/api/documents/api.js"></script> -->
- <script type="text/javascript"
- src="https://www.mingjianlims.com/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 .75s linear;
- -moz-animation: circle infinite .75s linear;
- -o-animation: circle infinite .75s linear;
- animation: circle infinite .75s linear;
- border: 2px solid #fff;
- border-top-color: rgba(0, 0, 0, .2);
- border-right-color: rgba(0, 0, 0, .2);
- border-bottom-color: rgba(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 target="_blank">
- 2020©深圳市金源信通科技有限公司©版权所有
- </span>
- </div>
- </div>
- </div>
- <!-- 使用 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 -->
- </body>
- </html>
|