This commit is contained in:
@@ -22,7 +22,9 @@
|
||||
</div>
|
||||
<div>
|
||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("User") }}:</span>
|
||||
<span class="body-2">{{ clientInfo.userName }}</span>
|
||||
<span class="body-2"
|
||||
>{{ clientInfo.userName }}{{ this.$store.state.userName }}</span
|
||||
>
|
||||
</div>
|
||||
|
||||
<v-divider class="mt-4"></v-divider>
|
||||
@@ -67,9 +69,9 @@
|
||||
<span class="ml-4 body-1"
|
||||
>{{ this.$gzlocale.get("RegisteredUser") }}:</span
|
||||
>
|
||||
<span class="body-2">
|
||||
{{ serverInfo.license.license.licensedTo }}
|
||||
</span>
|
||||
<span class="body-2">{{
|
||||
serverInfo.license.license.licensedTo
|
||||
}}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="ml-4 body-1"
|
||||
@@ -87,17 +89,17 @@
|
||||
<span class="ml-4 body-1"
|
||||
>{{ this.$gzlocale.get("LicenseExpiration") }}:</span
|
||||
>
|
||||
<span class="body-2">
|
||||
{{ serverInfo.license.license.licenseExpiration }}
|
||||
</span>
|
||||
<span class="body-2">{{
|
||||
serverInfo.license.license.licenseExpiration
|
||||
}}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="ml-4 body-1"
|
||||
>{{ this.$gzlocale.get("SupportedUntil") }}:</span
|
||||
>
|
||||
<span class="body-2">
|
||||
{{ serverInfo.license.license.maintenanceExpiration }}
|
||||
</span>
|
||||
<span class="body-2">{{
|
||||
serverInfo.license.license.maintenanceExpiration
|
||||
}}</span>
|
||||
</div>
|
||||
|
||||
<v-divider class="mt-4"></v-divider>
|
||||
@@ -137,7 +139,9 @@ function clickHandler(menuItem) {
|
||||
var text = element.innerText || element.textContent;
|
||||
|
||||
var logText = "";
|
||||
this.$_.forEach(aboutInfo.clientLog, function appendLogItem(value) {
|
||||
this.$_.forEach(m.vm.$store.state.logArray, function appendLogItem(
|
||||
value
|
||||
) {
|
||||
logText += value + "\n";
|
||||
});
|
||||
|
||||
@@ -208,7 +212,6 @@ export default {
|
||||
});
|
||||
},
|
||||
created() {
|
||||
this.clientInfo = aboutInfo;
|
||||
this.$gzapi
|
||||
.get("ServerInfo")
|
||||
.then(response => {
|
||||
@@ -221,6 +224,12 @@ export default {
|
||||
beforeDestroy() {
|
||||
// this.$gzevent.$off("menu-click", clickHandler);
|
||||
},
|
||||
mounted() {
|
||||
this.clientInfo = {};
|
||||
this.clientInfo = aboutInfo;
|
||||
//eslint-disable-next-line
|
||||
//console.log("MOUNTED");
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
serverInfo: { license: { license: {} } },
|
||||
|
||||
Reference in New Issue
Block a user