1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= webpackConfig.name %></title>
- </head>
- <body class="bgcolor">
- <noscript>
- <strong
- >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without
- JavaScript enabled. Please enable it to continue.</strong
- >
- </noscript>
- <div id="app"></div>
- <script>
- if (GetQueryValue('loginName') != null) {
- localStorage.removeItem('loginType');
- localStorage.setItem('loginName', GetQueryValue('loginName'));
- location.href = location.href.split('?')[0] + '?v=' + new Date().getTime();
- }
- function GetQueryValue(queryName) {
- var query = decodeURI(window.location.search.substring(1));
- var vars = query.split('&');
- for (var i = 0; i < vars.length; i++) {
- var pair = vars[i].split('=');
- if (pair[0] == queryName) {
- return pair[1];
- }
- }
- return null;
- }
- </script>
- <script src="//res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
- <script src="https://open.work.weixin.qq.com/wwopen/js/jwxwork-1.0.0.js"></script>
- <!--生产、uat-->
- <script
- charset="utf-8"
- src="https://map.qq.com/api/gljs?v=1.exp&libraries=service,tools&key=Y7SBZ-PI5K5-FOJIT-ILHLY-PN66T-HKB4A"></script>
- </body>
- </html>
|