This commit is contained in:
@@ -1,10 +1,7 @@
|
|||||||
import store from "../store";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
version: "8.0.0-alpha.5",
|
version: "8.0.0-alpha.5",
|
||||||
copyright:
|
copyright:
|
||||||
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
|
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
|
||||||
userName: store.state.userName,
|
|
||||||
browser: {
|
browser: {
|
||||||
platform: window.navigator.platform,
|
platform: window.navigator.platform,
|
||||||
userAgent: window.navigator.userAgent,
|
userAgent: window.navigator.userAgent,
|
||||||
@@ -19,6 +16,5 @@ export default {
|
|||||||
height: window.screen.height,
|
height: window.screen.height,
|
||||||
devicePixelRatio: window.devicePixelRatio,
|
devicePixelRatio: window.devicePixelRatio,
|
||||||
pixelDepth: window.screen.pixelDepth
|
pixelDepth: window.screen.pixelDepth
|
||||||
},
|
}
|
||||||
clientLog: store.state.logArray
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -22,7 +22,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class="ml-4 body-1">{{ this.$gzlocale.get("User") }}:</span>
|
<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>
|
</div>
|
||||||
|
|
||||||
<v-divider class="mt-4"></v-divider>
|
<v-divider class="mt-4"></v-divider>
|
||||||
@@ -67,9 +69,9 @@
|
|||||||
<span class="ml-4 body-1"
|
<span class="ml-4 body-1"
|
||||||
>{{ this.$gzlocale.get("RegisteredUser") }}:</span
|
>{{ this.$gzlocale.get("RegisteredUser") }}:</span
|
||||||
>
|
>
|
||||||
<span class="body-2">
|
<span class="body-2">{{
|
||||||
{{ serverInfo.license.license.licensedTo }}
|
serverInfo.license.license.licensedTo
|
||||||
</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class="ml-4 body-1"
|
<span class="ml-4 body-1"
|
||||||
@@ -87,17 +89,17 @@
|
|||||||
<span class="ml-4 body-1"
|
<span class="ml-4 body-1"
|
||||||
>{{ this.$gzlocale.get("LicenseExpiration") }}:</span
|
>{{ this.$gzlocale.get("LicenseExpiration") }}:</span
|
||||||
>
|
>
|
||||||
<span class="body-2">
|
<span class="body-2">{{
|
||||||
{{ serverInfo.license.license.licenseExpiration }}
|
serverInfo.license.license.licenseExpiration
|
||||||
</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class="ml-4 body-1"
|
<span class="ml-4 body-1"
|
||||||
>{{ this.$gzlocale.get("SupportedUntil") }}:</span
|
>{{ this.$gzlocale.get("SupportedUntil") }}:</span
|
||||||
>
|
>
|
||||||
<span class="body-2">
|
<span class="body-2">{{
|
||||||
{{ serverInfo.license.license.maintenanceExpiration }}
|
serverInfo.license.license.maintenanceExpiration
|
||||||
</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<v-divider class="mt-4"></v-divider>
|
<v-divider class="mt-4"></v-divider>
|
||||||
@@ -137,7 +139,9 @@ function clickHandler(menuItem) {
|
|||||||
var text = element.innerText || element.textContent;
|
var text = element.innerText || element.textContent;
|
||||||
|
|
||||||
var logText = "";
|
var logText = "";
|
||||||
this.$_.forEach(aboutInfo.clientLog, function appendLogItem(value) {
|
this.$_.forEach(m.vm.$store.state.logArray, function appendLogItem(
|
||||||
|
value
|
||||||
|
) {
|
||||||
logText += value + "\n";
|
logText += value + "\n";
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -208,7 +212,6 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.clientInfo = aboutInfo;
|
|
||||||
this.$gzapi
|
this.$gzapi
|
||||||
.get("ServerInfo")
|
.get("ServerInfo")
|
||||||
.then(response => {
|
.then(response => {
|
||||||
@@ -221,6 +224,12 @@ export default {
|
|||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
// this.$gzevent.$off("menu-click", clickHandler);
|
// this.$gzevent.$off("menu-click", clickHandler);
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
this.clientInfo = {};
|
||||||
|
this.clientInfo = aboutInfo;
|
||||||
|
//eslint-disable-next-line
|
||||||
|
//console.log("MOUNTED");
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
serverInfo: { license: { license: {} } },
|
serverInfo: { license: { license: {} } },
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
<v-container fluid>
|
<v-container fluid>
|
||||||
<v-layout row wrap>
|
<v-layout row wrap>
|
||||||
<v-flex xs12 class="hidden-sm-and-down text-xs-center" mt-5 ml-5 pl-5>
|
<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>
|
||||||
<v-flex xs12 class="hidden-md-and-up text-xs-center">
|
<v-flex xs12 class="hidden-md-and-up text-xs-center">
|
||||||
<v-img :src="require('../assets/logo.svg')" contain height="64"></v-img>
|
<v-img :src="require('../assets/logo.svg')" contain height="64"></v-img>
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
<v-flex xs12>
|
<v-flex xs12>
|
||||||
<div class="text-xs-center">
|
<div class="text-xs-center">
|
||||||
<v-icon color="red" size="100">fa-dragon</v-icon>
|
<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>
|
</div>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
|
|||||||
Reference in New Issue
Block a user