You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.2 KiB
81 lines
2.2 KiB
<!-- |
|
* @Author: your name |
|
* @Date: 2021-07-08 15:10:59 |
|
* @LastEditTime: 2022-09-20 15:33:25 |
|
* @LastEditors: chen_yt |
|
* @Description: In User Settings Edit |
|
* @FilePath: \central-system\public\index.html |
|
--> |
|
<!DOCTYPE html> |
|
<html data-name="cs"> |
|
|
|
<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"> |
|
<link rel="icon" id="titleIcon"> |
|
<script src="<%= BASE_URL %>adapter.min.js"></script> |
|
<script src="<%= BASE_URL %>webrtcstreamer.js"></script> |
|
<title> |
|
<%= webpackConfig.name %> |
|
</title> |
|
</head> |
|
<script src="<%= BASE_URL %>static/sm4/s4.js"></script> |
|
<script src="<%= BASE_URL %>static/sm4/byte&string.js"></script> |
|
<script src="<%= BASE_URL %>static/sm4/smutils.js"></script> |
|
<script type="text/javascript"> |
|
window._AMapSecurityConfig = { |
|
securityJsCode: 'b57f705b8c77f095e75caa4a62250669', // 你的密钥 |
|
} |
|
</script> |
|
<!-- <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_API_KEY&libraries=geometry"></script> --> |
|
<script> |
|
var ENV_SAAS_MODE = 'VUE_APP_SAAS_MODE' |
|
</script> |
|
<style> |
|
.main-loading { |
|
position: fixed; |
|
width: 100%; |
|
height: 100%; |
|
top: 0; |
|
left: 0; |
|
background-color: var(--theme-color); |
|
transition: background-color .1s ease; |
|
z-index: 9999; |
|
} |
|
|
|
.main-loading::before { |
|
content: ''; |
|
position: absolute; |
|
width: 100%; |
|
height: 100%; |
|
top: 0; |
|
left: 0; |
|
background: #ffffffee; |
|
} |
|
|
|
.main-loading .loading { |
|
transform: translate(-50%, -50%); |
|
top: 50%; |
|
left: 50%; |
|
width: 130px; |
|
height: 176px; |
|
position: absolute; |
|
} |
|
</style> |
|
|
|
<body> |
|
<noscript> |
|
<strong>We're sorry but central-system doesn't work properly without JavaScript enabled. Please enable it to |
|
continue.</strong> |
|
</noscript> |
|
|
|
<div class="main-loading" id="main-loading"> |
|
<img class="loading" src="<%= BASE_URL %>static/img/loading.gif" /> |
|
</div> |
|
|
|
<div id="fks-app-container"></div> |
|
<!-- built files will be auto injected --> |
|
</body> |
|
|
|
</html> |