This commit is contained in:
@@ -16,36 +16,55 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ $ay.t("DatabaseID") }}
|
{{ $ay.t("DatabaseID") }}
|
||||||
<span class="body-2">{{ currentLicenseInfo.serverDbId }}</span>
|
<span class="font-weight-bold ml-1">{{
|
||||||
|
currentLicenseInfo.serverDbId
|
||||||
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class=" body-1">{{ $ay.t("LicenseSerial") }}: </span>
|
{{ $ay.t("LicenseSerial") }}
|
||||||
<span class="body-2">{{ currentLicenseInfo.keySerial }}</span>
|
<span class="font-weight-bold ml-1">{{
|
||||||
|
currentLicenseInfo.keySerial
|
||||||
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class=" body-1">{{ $ay.t("LicenseExpiration") }}: </span>
|
{{ $ay.t("LicenseExpiration") }}
|
||||||
<span class="body-2">{{
|
<span class="font-weight-bold ml-1">{{
|
||||||
$ay.dt(currentLicenseInfo.licenseExpiration)
|
$ay.dt(currentLicenseInfo.licenseExpiration)
|
||||||
}}</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class=" body-1">{{ $ay.t("SupportedUntil") }}: </span>
|
{{ $ay.t("SupportedUntil") }}
|
||||||
<span class="body-2">{{
|
<span class="font-weight-bold ml-1">{{
|
||||||
$ay.dt(currentLicenseInfo.maintenanceExpiration)
|
$ay.dt(currentLicenseInfo.maintenanceExpiration)
|
||||||
}}</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 class="mt-6 mb-2">{{ $ay.t("LicensedOptions") }}</h2>
|
<div class="text-h5 mb-2 mt-5">
|
||||||
|
{{ $ay.t("LicensedOptions") }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-for="item in currentLicenseInfo.features"
|
v-for="item in currentLicenseInfo.features"
|
||||||
:key="item.Feature"
|
:key="item.Feature"
|
||||||
>
|
>
|
||||||
<span class=" body-1">{{ item.Feature }}</span>
|
{{ item.Feature }}
|
||||||
<span class="body-2">{{
|
<span class="font-weight-bold ml-1">{{
|
||||||
item.Count ? ": " + item.Count : ""
|
item.Count ? +item.Count : ""
|
||||||
}}</span>
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="mt-8">
|
||||||
|
<v-col cols="12">
|
||||||
|
<v-btn
|
||||||
|
:href="purchaseLink()"
|
||||||
|
target="blank"
|
||||||
|
class="mt-4 mr-4"
|
||||||
|
>{{ $ay.t("PurchaseLicense") }}</v-btn
|
||||||
|
>
|
||||||
|
<v-btn @click="fetchKey()" class="mt-4">{{
|
||||||
|
$ay.t("CheckForLicense")
|
||||||
|
}}</v-btn>
|
||||||
|
</v-col>
|
||||||
|
</div>
|
||||||
</div></template
|
</div></template
|
||||||
>
|
>
|
||||||
<template v-if="showLicenseUi() == 'revoked'">
|
<template v-if="showLicenseUi() == 'revoked'">
|
||||||
@@ -224,9 +243,9 @@ export default {
|
|||||||
},
|
},
|
||||||
licenseState: 0,
|
licenseState: 0,
|
||||||
request: {
|
request: {
|
||||||
Email: "cardjohn@ayanova.com",
|
Email: null,
|
||||||
Company: "Super TestCo",
|
Company: null,
|
||||||
Contact: "Test Testerson"
|
Contact: null
|
||||||
},
|
},
|
||||||
currentLicenseInfo: {},
|
currentLicenseInfo: {},
|
||||||
formState: {
|
formState: {
|
||||||
|
|||||||
Reference in New Issue
Block a user