Add: show availableActivateDateTime of maestro

This commit is contained in:
2018-10-03 21:45:17 +09:00
parent 757caecf18
commit 740115ee53
3 changed files with 27 additions and 5 deletions
+2
View File
@@ -2,6 +2,7 @@ function MaestroInfo() {
this.maestroID = sessionStorage.getItem("maestroID");
this.maestroName = "";
this.accountType = 0;
this.availableActivateDateTime = "";
this.playerCount = 0;
}
@@ -15,6 +16,7 @@ MaestroInfo.prototype.loadMaestroInfo = function(onSuccess, onFail) {
function(jsonData) {
self.maestroName = jsonData["name"];
self.accountType = jsonData["accountType"];
self.availableActivateDateTime = jsonData["availableActivateDateTime"];
self.playerCount = jsonData["playerCount"];
onSuccess();