This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
import store from "../store";
|
||||
|
||||
export default {
|
||||
version: "8.0.0-alpha.5",
|
||||
copyright:
|
||||
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
|
||||
userName: store.state.userName,
|
||||
browser: {
|
||||
platform: window.navigator.platform,
|
||||
userAgent: window.navigator.userAgent,
|
||||
@@ -19,6 +16,5 @@ export default {
|
||||
height: window.screen.height,
|
||||
devicePixelRatio: window.devicePixelRatio,
|
||||
pixelDepth: window.screen.pixelDepth
|
||||
},
|
||||
clientLog: store.state.logArray
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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: {} } },
|
||||
|
||||
@@ -2,7 +2,12 @@
|
||||
<v-container fluid>
|
||||
<v-layout row wrap>
|
||||
<v-flex xs12 class="hidden-sm-and-down text-xs-center" mt-5 ml-5 pl-5>
|
||||
<v-img :src="require('../assets/logo.svg')" class="my-3" contain height="200"></v-img>
|
||||
<v-img
|
||||
:src="require('../assets/logo.svg')"
|
||||
class="my-3"
|
||||
contain
|
||||
height="200"
|
||||
></v-img>
|
||||
</v-flex>
|
||||
<v-flex xs12 class="hidden-md-and-up text-xs-center">
|
||||
<v-img :src="require('../assets/logo.svg')" contain height="64"></v-img>
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
<v-flex xs12>
|
||||
<div class="text-xs-center">
|
||||
<v-icon color="red" size="100">fa-dragon</v-icon>
|
||||
<div class="headline">{{"404 - " + this.$gzlocale.get("ErrorAPI2010")}}</div>
|
||||
<div class="headline">
|
||||
{{ "404 - " + this.$gzlocale.get("ErrorAPI2010") }}
|
||||
</div>
|
||||
</div>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
|
||||
Reference in New Issue
Block a user