feat(web): initialize TFM page

Only table of thumbs by now
This commit is contained in:
2023-01-29 00:45:20 +03:00
parent b55865b8e7
commit 5725015408
5 changed files with 148 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
function tdb_query(trdb, trc, trb) {
output = null;
$.ajax({
url: "/TDBMS",
type: "POST",
contentType: "application/json",
data: `{"trdb":"${trdb}","trc":${trc},"trb":"${trb}"}`,
dataType: "json",
async: false,
success: function (resp) {
output = resp;
},
failure: function (err) {
alert(err);
}
});
return output;
}