123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!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" />
- <!-- 强制Chromium内核,作用于360浏览器、QQ浏览器等国产双核浏览器 -->
- <meta name="renderer" content="webkit" />
- <link rel="icon" href="<%= BASE_URL %>/logo.ico">
- <!-- 强制Chromium内核,作用于其他双核浏览器 -->
- <meta name="force-rendering" content="webkit" />
- <% if (process.env.NODE_ENV === 'production') { %>
- <!-- 自动将HTTP请求升级成安全的HTTPS请求 -->
- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
- <% } %>
- <!-- 如果有安装 Google Chrome Frame 插件则强制为Chromium内核,否则强制本机支持的最高版本IE内核,作用于IE浏览器 -->
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
- <link rel="manifest" href="<%= BASE_URL %>/manifest.json" />
- <!-- <link rel="icon" href="<%= BASE_URL %>/logo.ico"> -->
- <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css[process.env.VUE_APP_PACKAGE_ENV]) { %>
- <link href="<%= htmlWebpackPlugin.options.cdn.css[process.env.VUE_APP_PACKAGE_ENV][i] %>" rel="stylesheet">
- <% } %>
- <title>易粮易运</title>
- <link rel="icon" href="<%= BASE_URL %>/logo.ico">
- <% if (process.env.NODE_ENV === 'production') { %>
- <!-- <script>
- !(function(c,i,e,b){var h = i.createElement("script");var f = i.getElementsByTagName("script")[0];h.type = "text/javascript";h.crossorigin = true;h.onload = function(){try {c[b]||(c[b] = new c.wpkReporter({bid: 'qj3rmxes-10jz7agi',spa: true, plugins: []}));c[b].installAll();} catch (e) {console.error('init wpkReporter fail', e);}};f.parentNode.insertBefore(h, f);h.src = e})(window, document, "https://g.alicdn.com/woodpeckerx/jssdk??wpkReporter.js", "__wpk");
- </script> -->
- <% } %>
- <style>
- html,
- body,
- #app {
- height: 100%;
- margin: 0;
- padding: 0;
- }
- .winseaview-home {
- background-color: #303133;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .winseaview-home__main {
- user-select: none;
- width: 100%;
- flex-grow: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .winseaview-home__footer {
- width: 100%;
- flex-grow: 0;
- text-align: center;
- padding: 1em 0;
- }
- .winseaview-home__footer > a {
- font-size: 12px;
- color: #ababab;
- text-decoration: none;
- }
- .winseaview-home__loading {
- height: 32px;
- width: 32px;
- margin-bottom: 20px;
- }
- .winseaview-home__title {
- color: #fff;
- font-size: 14px;
- margin-bottom: 10px;
- }
- .winseaview-home__sub-title {
- color: #ababab;
- font-size: 12px;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but t1 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app">
- <div class="winseaview-home">
- <div class="winseaview-home__main">
- <img
- class="winseaview-home__loading"
- src="./img/loading-spin.svg"
- alt="loading"
- />
- <div class="winseaview-home__title">
- 正在加载资源
- </div>
- <div class="winseaview-home__sub-title d">
- 初次加载资源可能需要较多时间 请耐心等待
- </div>
- </div>
- </div>
- </div>
- <!-- built files will be auto injected -->
- <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js[process.env.VUE_APP_PACKAGE_ENV]) { %>
- <script src="<%= htmlWebpackPlugin.options.cdn.js[process.env.VUE_APP_PACKAGE_ENV][i] %>" charset="utf-8"></script>
- <% } %>
- </body>
- </html>
|