@@ -6,6 +6,7 @@
<script src="js/axios.min.js"></script>
</head>
<body>
+<h1 id="msg"></h1>
<script>
Date.prototype.format = function (fmt) {
var o = {
@@ -40,6 +41,7 @@
}).then(res => {
if (res.data.code === 1) {
window.close();
+ document.querySelector("#msg").innerHTML = "OK";
}
});
}, function (error) {
@@ -49,4 +51,4 @@
</script>
</body>
-</html>
+</html>