This commit is contained in:
2020-06-16 22:17:25 +00:00
parent 76bb170c08
commit 95c7792d57
2 changed files with 63 additions and 71 deletions

View File

@@ -21,7 +21,7 @@
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
</v-col>
<v-col cols="12" md="7" v-if="serverStatus == 1">
<v-col cols="12" md="7" v-if="showEvalUsers == true">
<v-select
v-model="selectedTrialUserId"
:items="selectLists.trialUsers"
@@ -97,7 +97,7 @@ export default {
errorBadCreds: false,
reveal: false,
formState: { errorBoxMessage: null },
serverStatus: 0,
showEvalUsers: false,
selectedTrialUserId: 1,
selectLists: {
trialUsers: [
@@ -226,17 +226,7 @@ export default {
.get("notify/hello")
.then(res => {
if (res.data != null) {
/**public enum LicenseStatus
{
NONE = 0,
ActiveTrial = 1,
ExpiredTrial = 2,
ActivePurchased = 3,
ExpiredPurchased = 4,
Revoked = 5
} */
vm.serverStatus = res.data;
vm.showEvalUsers = res.data;
}
})
.catch(function handleGetTrialModeError(error) {