2022-04-20 11:15:19 +05:30
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<link>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title></title>
|
|
|
|
|
<base href="/">
|
|
|
|
|
<style>
|
|
|
|
|
/* Absolute Center Spinner */
|
|
|
|
|
.loading {
|
|
|
|
|
position: sticky;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
height: 2em;
|
|
|
|
|
width: 2em;
|
|
|
|
|
overflow: show;
|
|
|
|
|
margin: auto;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Transparent Overlay */
|
|
|
|
|
.loading:before {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: rgba(0,0,0,0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* :not(:required) hides these rules from IE9 and below */
|
|
|
|
|
.loading:not(:required) {
|
|
|
|
|
/* hide "loading..." text */
|
|
|
|
|
font: 0/0 a;
|
|
|
|
|
color: transparent;
|
|
|
|
|
text-shadow: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loading:not(:required):after {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
margin-top: 14rem;
|
|
|
|
|
-webkit-animation: spinner 1500ms infinite linear;
|
|
|
|
|
-moz-animation: spinner 1500ms infinite linear;
|
|
|
|
|
-ms-animation: spinner 1500ms infinite linear;
|
|
|
|
|
-o-animation: spinner 1500ms infinite linear;
|
|
|
|
|
animation: spinner 1500ms infinite linear;
|
|
|
|
|
border-radius: 0.5em;
|
|
|
|
|
-webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
|
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Animation */
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes spinner {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@-moz-keyframes spinner {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@-o-keyframes spinner {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@keyframes spinner {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.pac-card {
|
|
|
|
|
margin: 10px 10px 0 0;
|
|
|
|
|
border-radius: 2px 0 0 2px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
outline: none;
|
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pac-container {
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pac-controls {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 5px 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pac-controls label {
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pac-input {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
padding: 0 11px 0 13px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pac-input:focus {
|
|
|
|
|
border-color: #4d90fe;
|
|
|
|
|
}
|
|
|
|
|
.infoB{
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
/* height: 187px; */
|
|
|
|
|
width: 320px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
box-shadow: 3px 3px 5px rgb(75, 62, 62);
|
|
|
|
|
color: black;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB .DeviceHead{
|
|
|
|
|
/* background: #07b907; */
|
|
|
|
|
background: #426E86;
|
|
|
|
|
color: white;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-bottom:0px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB .DeviceHead1{
|
|
|
|
|
background: #1a1c1adb;
|
|
|
|
|
color: white;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-bottom:0px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.infoB .rowOne .leftPadding{
|
|
|
|
|
padding-left:30px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB .rowTwo .leftPadding{
|
|
|
|
|
padding-left:30px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB .rowOne{
|
|
|
|
|
padding: 6px;
|
|
|
|
|
background-color: #dedede;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
width:100%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB .rowTwo{
|
|
|
|
|
padding: 6px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.infoB:before {
|
|
|
|
|
|
|
|
|
|
border-top-color: rgb(44, 32, 32);
|
|
|
|
|
border-width: 5.5px;
|
|
|
|
|
margin-top: -1.5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.infoB:after, .infoB:before {
|
|
|
|
|
border: 10px solid transparent;
|
|
|
|
|
border-top-color: rgb(44, 32, 32);
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: '';
|
|
|
|
|
top: 100%;
|
|
|
|
|
left: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[hidden] { display: none !important;}
|
|
|
|
|
</style>
|
|
|
|
|
<!--<link rel="stylesheet" href="https://bootswatch.com/journal/bootstrap.min.css">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<link rel="icon" id= "appFavicon" type="image/x-icon" href="faviconn.ico">
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- <script src='https://www.google.com/recaptcha/api.js'></script>
|
|
|
|
|
-->
|
|
|
|
|
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
|
|
|
|
|
<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/0.9.0rc1/jspdf.min.js"></script>
|
2023-01-13 19:33:16 +05:30
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js" integrity="sha512-GsLlZN/3F2ErC5ifS5QtgpiJtWd43JWSuIgh7mbzZ8zBps+dvLusV+eNQATqgA/HdeKFVgA5v3S/cIrLF7QnIg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
|
|
|
|
2022-04-20 11:15:19 +05:30
|
|
|
<script src="https://html2canvas.hertzen.com/dist/html2canvas.js"></script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/0.9.0rc1/jspdf.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> -->
|
|
|
|
|
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
|
|
|
|
<!-- <script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script> -->
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://npmcdn.com/sweetalert2@4.0.15/dist/sweetalert2.min.css">
|
|
|
|
|
<script src="https://npmcdn.com/sweetalert2@4.0.15/dist/sweetalert2.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<meta name="viewport" content ="width=device-width,initial-scale=1,user-scalable=yes" />
|
|
|
|
|
<!-- <script src="https://www.gstatic.com/charts/loader.js"></script -->
|
|
|
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css">
|
|
|
|
|
<!-- <link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css"> -->
|
|
|
|
|
<link rel ="stylesheet" href = "~ng-pick-datetime/assets/style/picker.min.css">
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
|
|
|
|
|
<script src="https://oss.sheetjs.com/js-xlsx/shim.js"></script>
|
|
|
|
|
<!-- <script src="https://oss.sheetjs.com/js-xlsx/xlsx.full.min.js"></script> -->
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.15.1/xlsx.full.min.js"></script>
|
|
|
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.2/shim.min.js"></script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.2/xlsx.full.min.js"> </script> -->
|
|
|
|
|
<script src="https://www.gstatic.com/charts/loader.js"></script>
|
|
|
|
|
<!-- AIzaSyCNT3eO1wPQHUhY_cmQ9N_9BkLzJ_GB9j8 -->
|
|
|
|
|
<!-- old key AIzaSyDZKxpYMfGSyStS3fLuVqHuM6ZEJWtF1-k -->
|
2023-01-07 17:09:46 +00:00
|
|
|
<script id= "mapApi" src="https://maps.google.com/maps/api/js?libraries=geometry,places,drawing&key=AIzaSyCYRS0MutZAJa2OztMvaYwBoaMG-fx3zaw"></script>
|
2022-04-20 11:15:19 +05:30
|
|
|
<!-- AIzaSyA_ycttLXPMfCSSNAfPOsaENPQ85i17lPU latest key used on 2 november -->
|
|
|
|
|
<!-- AIzaSyCmSXnoBBGekErvqBvu5N7dbeqdH1pHp7c -->
|
|
|
|
|
<!-- AIzaSyDllmSphAf92Mk69v46HFCiClWibYehkiU -->
|
|
|
|
|
<!-- AIzaSyDZKxpYMfGSyStS3fLuVqHuM6ZEJWtF1-k -->
|
|
|
|
|
<!-- AIzaSyCNT3eO1wPQHUhY_cmQ9N_9BkLzJ_GB9j8 -->
|
|
|
|
|
<!-- Main api key AIzaSyCW6oefVI_AtqfSnaBHb0Mjdjx4VO4ANaM -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/css/ol.css" type="text/css">
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/build/ol.js"></script>
|
|
|
|
|
|
|
|
|
|
<script src="vendor/perfect-scrollbar/perfect-scrollbar.min.js"></script>
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.0/css/intlTelInput.css">
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.0/js/intlTelInput-jquery.min.js"></script>
|
|
|
|
|
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
|
|
|
|
|
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.5.0/perfect-scrollbar.min.js"></script> -->
|
|
|
|
|
<!-- https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.5.0/perfect-scrollbar.min.js -->
|
|
|
|
|
<!-- =====================Digicon API key ======================================= -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =========================Digicon API Key ============================================ -->
|
|
|
|
|
<!-- Config.json api ley -->
|
|
|
|
|
<!-- // AIzaSyBLNw1Bop4CPvxZV9MmxgYc9pog2Pcx8nA -->
|
|
|
|
|
<!-- <script type="text/javascript" src="moment.js"></script> -->
|
|
|
|
|
|
|
|
|
|
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Play:700,400' type='text/css'>
|
|
|
|
|
<script src="//cdn.rawgit.com/Mikhus/canvas-gauges/gh-pages/download/2.1.4/radial/gauge.min.js"></script>
|
|
|
|
|
<!-- <script type="text/javascript" src="http://iop.io/js/vendor/d3.v3.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="http://iop.io/js/vendor/polymer/PointerEvents/pointerevents.js"></script>
|
|
|
|
|
<script type="text/javascript" src="http://iop.io/js/vendor/polymer/PointerGestures/pointergestures.js"></script>
|
|
|
|
|
<script type="text/javascript" src="http://iop.io/js/iopctrl.js"></script>
|
|
|
|
|
-->
|
|
|
|
|
<!-- <script src="https://unpkg.com/jspdf@latest/dist/jspdf.umd.min.js"></script> -->
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.min.js"></script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.0.10/jspdf.plugin.autotable.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/2.0.16/jspdf.plugin.autotable.js"></script> -->
|
|
|
|
|
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js">
|
|
|
|
|
</script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.js"></script>
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/exceljs/4.3.0/exceljs.min.js" integrity="sha512-UnrKxsCMN9hFk7M56t4I4ckB4N/2HHi0w/7+B/1JsXIX3DmyBcsGpT3/BsuZMZf+6mAr0vP81syWtfynHJ69JA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/qrcode-generator/1.4.1/qrcode.min.js"></script>
|
|
|
|
|
<!-- <link rel="stylesheet" href="multiple-select.min.css">
|
|
|
|
|
<script src="multiple-select.min.js"></script> -->
|
|
|
|
|
<script src="/assets/js/infobox.js"></script>
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.20/css/jquery.dataTables.min.css">
|
|
|
|
|
<script src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
|
|
|
|
|
<!-- <link rel="stylesheet" href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.dataTables.min.css"> -->
|
|
|
|
|
<!-- <script type="text/javascript" src="https://cdn.datatables.net/fixedcolumns/3.3.0/js/dataTables.fixedColumns.min.js"></script> -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/scroller/2.0.2/css/scroller.dataTables.min.css">
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/scroller/2.0.1/js/dataTables.scroller.min.js"></script>
|
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
|
|
|
|
|
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.6.1/css/buttons.dataTables.min.css">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" ></script>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.2/js/bootstrap.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/1.10.18/js/dataTables.foundation.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.1/js/dataTables.buttons.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.1/js/buttons.flash.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.1/js/buttons.html5.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.2.4/js/buttons.print.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.22/pdfmake.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- <link type="text/css" href="//gyrocode.github.io/jquery-datatables-checkboxes/1.2.11/css/dataTables.checkboxes.css" rel="stylesheet" /> -->
|
|
|
|
|
<!-- <script type="text/javascript" src="//gyrocode.github.io/jquery-datatables-checkboxes/1.2.11/js/dataTables.checkboxes.min.js"></script> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- need to remove or keep after POC -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- need to remove or keep after POC -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.min.js" ></script> -->
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.js"></script>
|
|
|
|
|
<!-- <link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/wenzhixin/multiple-select/e14b36de/multiple-select.css"> -->
|
|
|
|
|
<!-- Include plugin -->
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/multiple-select@1.3.1/dist/multiple-select.min.css">
|
|
|
|
|
<script src="https://unpkg.com/multiple-select@1.3.1/dist/multiple-select.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
|
|
|
|
|
<!-- <script src="https://unpkg.com/multiple-select@1.3.1/dist/multiple-select.js"></script> -->
|
|
|
|
|
<!-- <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/css/bootstrap-select.min.css" rel="stylesheet" />
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.10.0/js/bootstrap-select.min.js"></script> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.8.1/css/mdb.min.css" rel="stylesheet"> -->
|
|
|
|
|
<!-- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script> -->
|
|
|
|
|
|
|
|
|
|
<!-- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.8.1/js/mdb.min.js"></script> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"> </script> -->
|
|
|
|
|
|
|
|
|
|
<!-- <script src="https://maps.googleapis.com/maps/api/js" async defer></script>
|
|
|
|
|
-->
|
|
|
|
|
<!--
|
|
|
|
|
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="/assets/js/markerAnimate.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="/assets/js/SlidingMarker.min.js"></script>
|
|
|
|
|
-->
|
|
|
|
|
<style>
|
|
|
|
|
.mat-dialog-container {
|
|
|
|
|
box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-width: 80vw;
|
|
|
|
|
outline: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
<!-- <script>
|
|
|
|
|
function show() {
|
|
|
|
|
|
|
|
|
|
alert("hfjdhfj");
|
|
|
|
|
}
|
|
|
|
|
</script> -->
|
|
|
|
|
<!-- <link rel="stylesheet" href="dist/multiple-select.min.css">
|
|
|
|
|
<script src="/dist/multiple-select.min.js"></script> -->
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<app-root>
|
|
|
|
|
<div class="loading" >Loading…</div>
|
|
|
|
|
</app-root>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|