Update biz_v.html
Browse files- biz_v.html +23 -2
biz_v.html
CHANGED
|
@@ -37,12 +37,16 @@
|
|
| 37 |
button:hover {
|
| 38 |
background-color: #388E3C;
|
| 39 |
}
|
| 40 |
-
select {
|
| 41 |
padding: 10px;
|
| 42 |
font-size: 16px;
|
| 43 |
border: 1px solid #ccc;
|
| 44 |
border-radius: 5px;
|
| 45 |
margin: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
}
|
| 47 |
</style>
|
| 48 |
</head>
|
|
@@ -71,6 +75,24 @@
|
|
| 71 |
|
| 72 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
| 73 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
document.getElementById('sendRequestButton').addEventListener('click', function() {
|
| 75 |
const token = document.getElementById('tokenInput').value;
|
| 76 |
const minDate = document.getElementById('dateSelect').value;
|
|
@@ -106,7 +128,6 @@
|
|
| 106 |
select.appendChild(option);
|
| 107 |
});
|
| 108 |
container.appendChild(select);
|
| 109 |
-
|
| 110 |
document.getElementById('sendGetRequestButton').addEventListener('click', function() {
|
| 111 |
const selectedValue = document.getElementById('dropdown').value;
|
| 112 |
const token = document.getElementById('tokenInput').value;
|
|
|
|
| 37 |
button:hover {
|
| 38 |
background-color: #388E3C;
|
| 39 |
}
|
| 40 |
+
input, select {
|
| 41 |
padding: 10px;
|
| 42 |
font-size: 16px;
|
| 43 |
border: 1px solid #ccc;
|
| 44 |
border-radius: 5px;
|
| 45 |
margin: 10px;
|
| 46 |
+
display: block;
|
| 47 |
+
width: calc(100% - 42px);
|
| 48 |
+
margin: 10px auto;
|
| 49 |
+
box-sizing: border-box;
|
| 50 |
}
|
| 51 |
</style>
|
| 52 |
</head>
|
|
|
|
| 75 |
|
| 76 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
| 77 |
<script>
|
| 78 |
+
toastr.options = {
|
| 79 |
+
"closeButton": false,
|
| 80 |
+
"debug": false,
|
| 81 |
+
"newestOnTop": false,
|
| 82 |
+
"progressBar": false,
|
| 83 |
+
"positionClass": "toast-top-right",
|
| 84 |
+
"preventDuplicates": false,
|
| 85 |
+
"onclick": null,
|
| 86 |
+
"showDuration": "300",
|
| 87 |
+
"hideDuration": "1000",
|
| 88 |
+
"timeOut": "5000",
|
| 89 |
+
"extendedTimeOut": "1000",
|
| 90 |
+
"showEasing": "swing",
|
| 91 |
+
"hideEasing": "linear",
|
| 92 |
+
"showMethod": "fadeIn",
|
| 93 |
+
"hideMethod": "fadeOut"
|
| 94 |
+
};
|
| 95 |
+
|
| 96 |
document.getElementById('sendRequestButton').addEventListener('click', function() {
|
| 97 |
const token = document.getElementById('tokenInput').value;
|
| 98 |
const minDate = document.getElementById('dateSelect').value;
|
|
|
|
| 128 |
select.appendChild(option);
|
| 129 |
});
|
| 130 |
container.appendChild(select);
|
|
|
|
| 131 |
document.getElementById('sendGetRequestButton').addEventListener('click', function() {
|
| 132 |
const selectedValue = document.getElementById('dropdown').value;
|
| 133 |
const token = document.getElementById('tokenInput').value;
|