This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export default {
|
||||
version: "8.0.0-alpha.10.4",
|
||||
version: "8.0.0-alpha.10",
|
||||
copyright:
|
||||
"Copyright © 1999-2020, Ground Zero Tech-Works Inc. All Rights Reserved"
|
||||
};
|
||||
|
||||
@@ -6,23 +6,111 @@
|
||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||
<template v-if="showLicenseUi() == 'ok'">
|
||||
<!-- Normal active license UI -->
|
||||
|
||||
<v-list two-line subheader>
|
||||
<v-subheader>{{ $ay.t("HelpLicense") }}</v-subheader>
|
||||
|
||||
<v-list-item>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>{{
|
||||
$ay.t("RegisteredUser")
|
||||
}}</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
currentLicenseInfo.licensedTo
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-list-item>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>{{
|
||||
$ay.t("DatabaseID")
|
||||
}}</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
currentLicenseInfo.serverDbId
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-list-item>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>
|
||||
{{ $ay.t("LicenseSerial") }}</v-list-item-title
|
||||
>
|
||||
<v-list-item-subtitle>{{
|
||||
currentLicenseInfo.keySerial
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-list-item v-if="currentLicenseInfo.licenseWillExpire">
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>
|
||||
{{ $ay.t("LicenseExpiration") }}</v-list-item-title
|
||||
>
|
||||
<v-list-item-subtitle>{{
|
||||
$ay.sd(currentLicenseInfo.licenseExpiration)
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-list-item>
|
||||
<v-list-item-content
|
||||
v-bind:class="{
|
||||
'red--text text-h6': currentLicenseInfo.maintenanceExpired
|
||||
}"
|
||||
>
|
||||
<v-list-item-title>
|
||||
{{ $ay.t("SupportedUntil") }}</v-list-item-title
|
||||
>
|
||||
<v-list-item-subtitle>{{
|
||||
$ay.sd(currentLicenseInfo.maintenanceExpiration)
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
|
||||
<v-subheader>{{ $ay.t("LicensedOptions") }}</v-subheader>
|
||||
|
||||
<v-list-item
|
||||
v-for="item in currentLicenseInfo.features"
|
||||
:key="item.Feature"
|
||||
>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title>{{ item.Feature }}</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
item.Count ? +item.Count : "✓"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
|
||||
<div class="ml-1 ml-sm-6">
|
||||
<div class="text-h5 mb-2">{{ $ay.t("HelpLicense") }}</div>
|
||||
<div>
|
||||
{{ $ay.t("RegisteredUser") }}
|
||||
<span class="font-weight-bold ml-1">{{
|
||||
|
||||
<div class="my-1">
|
||||
<span class="text-subtitle-1 text-sm-h5">{{
|
||||
$ay.t("RegisteredUser")
|
||||
}}</span>
|
||||
<br />
|
||||
<span class="text-subtitle-2 text-sm-h6">{{
|
||||
currentLicenseInfo.licensedTo
|
||||
}}</span>
|
||||
</div>
|
||||
<div>
|
||||
{{ $ay.t("DatabaseID") }}
|
||||
<span class="font-weight-bold ml-1">{{
|
||||
<div class="my-1">
|
||||
<span class="text-subtitle-1 text-sm-h5">{{
|
||||
$ay.t("DatabaseID")
|
||||
}}</span>
|
||||
<br />
|
||||
<span class="text-subtitle-2 text-sm-h6">{{
|
||||
currentLicenseInfo.serverDbId
|
||||
}}</span>
|
||||
</div>
|
||||
<div>
|
||||
{{ $ay.t("LicenseSerial") }}
|
||||
<span class="font-weight-bold ml-1">{{
|
||||
<div class="my-1">
|
||||
<span class="text-subtitle-1 text-sm-h5 mt-1">
|
||||
{{ $ay.t("LicenseSerial") }}</span
|
||||
>
|
||||
<br />
|
||||
<span class="text-subtitle-2 text-sm-h6">{{
|
||||
currentLicenseInfo.keySerial
|
||||
}}</span>
|
||||
</div>
|
||||
@@ -56,6 +144,7 @@
|
||||
item.Count ? +item.Count : ""
|
||||
}}</span>
|
||||
</div>
|
||||
|
||||
<div class="mt-8">
|
||||
<v-col cols="12">
|
||||
<v-btn
|
||||
|
||||
Reference in New Issue
Block a user