This commit is contained in:
2019-05-22 23:39:00 +00:00
parent 5ffb5e25bc
commit 91878687ee

View File

@@ -17,6 +17,7 @@
<v-subheader>{{ this.$gzlocale.get("ClientApp") }}</v-subheader>
<div><span class="ml-4 body-1">{{this.$gzlocale.get("Version")}}: </span><span class="body-2"> {{clientInfo.version}}</span></div>
<div><span class="ml-4 body-1">{{this.$gzlocale.get("User")}}: </span><span class="body-2"> {{clientInfo.userName}}</span></div>
<v-divider class="mt-4"></v-divider>
<v-subheader>{{ this.$gzlocale.get("Browser") }}</v-subheader>
<div v-for="(value, name) in clientInfo.browser" :key="name">
@@ -40,6 +41,26 @@
<div><span class="ml-4 body-1">{{this.$gzlocale.get("LicenseSerial")}}: </span><span class="body-2"> {{serverInfo.license.license.keySerial}}</span></div>
<div><span class="ml-4 body-1">{{this.$gzlocale.get("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></div>
<v-divider class="mt-4"></v-divider>
<v-subheader>{{ this.$gzlocale.get("LicensedOptions") }}</v-subheader>
<div v-for="item in serverInfo.license.license.features" :key="item.Feature"><span class="ml-4 body-1" >{{item.Feature}}</span>
<span class="body-2">{{ item.Count ? ": "+item.Count : "" }} </span>
</div>
<v-divider class="mt-4"></v-divider>
</v-card>
</v-flex>