123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!--
- * @Author: your name
- * @Date: 2020-06-28 13:40:38
- * @LastEditTime: 2020-07-16 16:19:35
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \wanda-bm-guide\public\index.html
- -->
- <!DOCTYPE html>
- <html lang="en">
- <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" href="<%= BASE_URL %>favicon.ico">
- <script src="<%= BASE_URL %>systemConf.js"></script>
- <script src="<%= BASE_URL %>g.js"></script>
- <title>万达广场管理说明书</title>
- <style>
- .map-p-label{
- background-color:transparent!important;
- border:none!important;
- box-shadow:none!important;
- }
- .leaflet-popup-close-button{
- display: none;
- }
- .leaflet-container{
- background: #f7f9fa!important;
- }
- .my-leaflet-div-icon{
- white-space: nowrap;
- }
- .leaflet-popup-content-wrapper{
- padding: 0px!important;
- border-radius: 0px!important;
- box-shadow: none!important;
- }
- .leaflet-popup-content-wrapper .leaflet-popup-content {
- margin: 0!important;
- min-width: 250px;
- background: rgba(255, 255, 255, 0.5);
-
- }
- .leaflet-mypopup-content {
- padding: 8px 12px!important;
- }
- .leaflet-mypopup-content .title{
- margin-bottom: 12px;
- }
- .leaflet-mypopup-content .title span{
- font-size: 14px;
- font-weight: bold;
- }
- .leaflet-mypopup-content .line {
- margin-bottom: 12px;
- }
- .leaflet-mypopup-content .line span{
- margin-right: 10px;
- }
- .leaflet-mypopup-content .line span:nth-of-type(1){
- font-size: 12px;
- color: #8D9399;
- }
- .leaflet-mypopup-content .line span:nth-of-type(2){
- font-size: 16px;
- color: #1F2429;
- }
- .leaflet-mypopup-content .line span:nth-of-type(3) i{
- display: inline-block;
- width: 16px;
- height: 16px;
- border-radius: 8px;
- color: #F54E45;
- }
- .leaflet-mypopup-content .line span:nth-of-type(3) em{
- font-size: 12px;
- color: #F54E45;
- }
- </style>
- <script>
- var remHandle = function () {
- var html = document.documentElement;
- var width = html.clientWidth;
- html.style.fontSize = width / 192 + 'px';
- }
- remHandle();
- window.onresize = function () {
- remHandle();
- }
- </script>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but wandaspecificationofsanming doesn't work properly without JavaScript enabled. Please enable
- it to continue.</strong>
- </noscript>
- <div id="app"></div>
-
- </body>
- </html>
|