feat(web): add database management interface
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
db_name = localStorage["db_name"];
|
||||
if (db_name == null) {
|
||||
location.href = "/tdbms/settings";
|
||||
}
|
||||
|
||||
$(window).on("load", function (e) {
|
||||
$(".db_name").text(db_name);
|
||||
});
|
||||
Reference in New Issue
Block a user