|
|
|
<!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">
|
|
|
|
<base href="/" />
|
|
|
|
<style>
|
|
|
|
@keyframes loading-rotate {
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading {
|
|
|
|
display: none;
|
|
|
|
animation: loading-rotate 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading.loading {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<link rel="stylesheet" href="./main.css" />
|
|
|
|
<title></title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<img src="./assets/icons/loading.svg" id="loading" class="loading">
|
|
|
|
<script type="importmap">
|
|
|
|
{
|
|
|
|
"imports": {
|
|
|
|
"html":"./utils/index.js",
|
|
|
|
"detect-it":"./lib/detect-it/detect-it.esm.js",
|
|
|
|
"lodash":"./lib/lodash/lodash.esm.js",
|
|
|
|
"vue": "./lib/vue/vue.esm-browser.js",
|
|
|
|
"vue-router": "./lib/vue-router/vue-router.esm-browser.js",
|
|
|
|
"vue-i18n":"./lib/vue-i18n/vue-i18n.esm-browser.prod.js",
|
|
|
|
"pinia": "./lib/pinia/pinia.esm-browser.js",
|
|
|
|
"pubsub-js": "./lib/pubsub-js/pubsub.esm.js",
|
|
|
|
"linq": "./lib/linq/linq.min.js",
|
|
|
|
"@microsoft/signalr": "./lib/@microsoft/signalr/signalr.esm.js",
|
|
|
|
"@vueuse/shared": "./lib/@vueuse/shared/index.mjs",
|
|
|
|
"@vueuse/core": "./lib/@vueuse/core/index.mjs",
|
|
|
|
"element-plus": "./lib/element-plus/index.full.min.mjs",
|
|
|
|
"@element-plus/icons-vue":"./lib/@element-plus/icons-vue/index.js",
|
|
|
|
"nprogress": "./lib/nprogress/nprogress.vite-esm.js",
|
|
|
|
"echarts/core": "./lib/echarts/echarts.esm.min.js",
|
|
|
|
"vue-echarts": "./lib/vue-echarts/index.esm.min.js",
|
|
|
|
"resize-detector": "./lib/resize-detector/index.js",
|
|
|
|
"@vue-office/excel": "./lib/@vue-office/excel/vue-office-excel.mjs",
|
|
|
|
"@vue/devtools-api": "./lib/@vue/devtools-api/shim.js",
|
|
|
|
"vue-demi": "./lib/vue-demi/shim.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
window.process = { env: { NODE_ENV: 'production' } };
|
|
|
|
</script>
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|