This commit is contained in:
@@ -242,6 +242,13 @@ export default {
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case socktype.License:
|
||||||
|
vm.$router.push({
|
||||||
|
name: "license-edit",
|
||||||
|
params: { recordid: tid.id }
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
case socktype.TrialLicenseRequest:
|
case socktype.TrialLicenseRequest:
|
||||||
vm.$router.push({
|
vm.$router.push({
|
||||||
name: "trial-request-edit",
|
name: "trial-request-edit",
|
||||||
|
|||||||
@@ -6,139 +6,176 @@
|
|||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
<v-row dense>
|
<v-row dense>
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-text-field
|
<v-select
|
||||||
ref="companyName"
|
ref="pGroup"
|
||||||
v-model="obj.companyName"
|
v-model="obj.pGroup"
|
||||||
dense
|
dense
|
||||||
|
:items="selectLists.pGroups"
|
||||||
|
item-text="name"
|
||||||
|
item-value="id"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$sock.t('TrialLicenseRequestCompanyName')"
|
:label="$sock.t('ProductGroup')"
|
||||||
:rules="[form().required(this, 'companyName')]"
|
data-cy="pGroup"
|
||||||
:error-messages="form().serverErrors(this, 'companyName')"
|
:rules="[form().integerValid(this, 'pGroup')]"
|
||||||
data-cy="companyName"
|
:error-messages="form().serverErrors(this, 'pGroup')"
|
||||||
@input="fieldValueChanged('companyName')"
|
@input="fieldValueChanged('pGroup')"
|
||||||
></v-text-field>
|
></v-select>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-text-field
|
<gz-date-time-picker
|
||||||
ref="contactName"
|
ref="created"
|
||||||
v-model="obj.contactName"
|
v-model="obj.created"
|
||||||
dense
|
:label="$sock.t('Created')"
|
||||||
|
:rules="[form().required(this, 'created')]"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$sock.t('TrialLicenseRequestContactName')"
|
:error-messages="form().serverErrors(this, 'created')"
|
||||||
:rules="[form().required(this, 'contactName')]"
|
data-cy="created"
|
||||||
:error-messages="form().serverErrors(this, 'contactName')"
|
@input="fieldValueChanged('created')"
|
||||||
data-cy="contactName"
|
></gz-date-time-picker>
|
||||||
@input="fieldValueChanged('contactName')"
|
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<gz-pick-list
|
||||||
|
ref="customerId"
|
||||||
|
v-model="obj.customerId"
|
||||||
|
:aya-type="sockTypes().Customer"
|
||||||
|
show-edit-icon
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$sock.t('Customer')"
|
||||||
|
:error-messages="form().serverErrors(this, 'customerId')"
|
||||||
|
@input="fieldValueChanged('customerId')"
|
||||||
|
></gz-pick-list>
|
||||||
|
</v-col>
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
ref="dbId"
|
ref="regTo"
|
||||||
v-model="obj.dbId"
|
v-model="obj.regTo"
|
||||||
dense
|
dense
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$sock.t('DatabaseID')"
|
:label="$sock.t('LicenseRegTo')"
|
||||||
:rules="[form().required(this, 'dbId')]"
|
:rules="[form().required(this, 'regTo')]"
|
||||||
:error-messages="form().serverErrors(this, 'dbId')"
|
:error-messages="form().serverErrors(this, 'regTo')"
|
||||||
data-cy="dbId"
|
data-cy="regTo"
|
||||||
@input="fieldValueChanged('dbId')"
|
@input="fieldValueChanged('regTo')"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<gz-email
|
<gz-email
|
||||||
ref="email"
|
ref="fetchEmail"
|
||||||
v-model="obj.email"
|
v-model="obj.fetchEmail"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$sock.t('TrialLicenseRequestEmail')"
|
:label="$sock.t('LicenseFetchEmail')"
|
||||||
data-cy="email"
|
data-cy="fetchEmail"
|
||||||
:error-messages="form().serverErrors(this, 'email')"
|
:error-messages="form().serverErrors(this, 'fetchEmail')"
|
||||||
@input="fieldValueChanged('email')"
|
@input="fieldValueChanged('fetchEmail')"
|
||||||
></gz-email>
|
></gz-email>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<gz-date-time-picker
|
||||||
|
ref="licenseExpire"
|
||||||
|
v-model="obj.licenseExpire"
|
||||||
|
:label="$sock.t('LicenseExpiration')"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:error-messages="form().serverErrors(this, 'licenseExpire')"
|
||||||
|
data-cy="licenseExpire"
|
||||||
|
@input="fieldValueChanged('licenseExpire')"
|
||||||
|
></gz-date-time-picker>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<gz-date-time-picker
|
||||||
|
ref="maintenanceExpire"
|
||||||
|
v-model="obj.maintenanceExpire"
|
||||||
|
:label="$sock.t('LicenseMaintenanceExpire')"
|
||||||
|
:rules="[form().required(this, 'maintenanceExpire')]"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:error-messages="form().serverErrors(this, 'maintenanceExpire')"
|
||||||
|
data-cy="maintenanceExpire"
|
||||||
|
@input="fieldValueChanged('maintenanceExpire')"
|
||||||
|
></gz-date-time-picker>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-checkbox
|
<v-checkbox
|
||||||
ref="emailValidated"
|
ref="active"
|
||||||
v-model="obj.emailValidated"
|
v-model="obj.active"
|
||||||
dense
|
dense
|
||||||
readonly
|
:readonly="formState.readOnly"
|
||||||
:label="$sock.t('TrialLicenseRequestEmailValidated')"
|
:label="$sock.t('Active')"
|
||||||
data-cy="emailValidated"
|
data-cy="active"
|
||||||
:error-messages="form().serverErrors(this, 'emailValidated')"
|
:error-messages="form().serverErrors(this, 'active')"
|
||||||
@change="fieldValueChanged('emailValidated')"
|
@change="fieldValueChanged('active')"
|
||||||
></v-checkbox>
|
></v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<template v-if="obj.pGroup == 0">
|
||||||
<gz-date-time-picker
|
<v-col cols="12">
|
||||||
ref="requested"
|
<div class="text-h1 error--text">
|
||||||
v-model="obj.requested"
|
DO NOT USE, NOT A VALID PRODUCT GROUP
|
||||||
:label="$sock.t('TrialLicenseRequestRequested')"
|
</div>
|
||||||
readonly
|
</v-col>
|
||||||
></gz-date-time-picker>
|
</template>
|
||||||
</v-col>
|
<template v-if="obj.pGroup == 1">
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-text-field
|
||||||
<gz-date-time-picker
|
ref="fetchCode"
|
||||||
ref="processed"
|
v-model="obj.fetchCode"
|
||||||
v-model="obj.processed"
|
dense
|
||||||
:label="$sock.t('TrialLicenseRequestProcessed')"
|
:readonly="formState.readOnly"
|
||||||
readonly
|
:label="$sock.t('LicenseFetchCode')"
|
||||||
></gz-date-time-picker>
|
:rules="[form().required(this, 'fetchCode')]"
|
||||||
</v-col>
|
:error-messages="form().serverErrors(this, 'fetchCode')"
|
||||||
|
data-cy="fetchCode"
|
||||||
|
@input="fieldValueChanged('fetchCode')"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
</template>
|
||||||
|
<template v-if="obj.pGroup == 2">
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
ref="dbId"
|
||||||
|
v-model="obj.dbId"
|
||||||
|
dense
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$sock.t('DatabaseID')"
|
||||||
|
:rules="[form().required(this, 'dbId')]"
|
||||||
|
:error-messages="form().serverErrors(this, 'dbId')"
|
||||||
|
data-cy="dbId"
|
||||||
|
@input="fieldValueChanged('dbId')"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
</template>
|
||||||
|
<template v-if="obj.pGroup == 3">
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
ref="dbId"
|
||||||
|
v-model="obj.dbId"
|
||||||
|
dense
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$sock.t('DatabaseID')"
|
||||||
|
:rules="[form().required(this, 'dbId')]"
|
||||||
|
:error-messages="form().serverErrors(this, 'dbId')"
|
||||||
|
data-cy="dbId"
|
||||||
|
@input="fieldValueChanged('dbId')"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
</template>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<gz-date-time-picker
|
<gz-date-time-picker
|
||||||
ref="fetchedOn"
|
ref="fetchedOn"
|
||||||
v-model="obj.fetchedOn"
|
v-model="obj.fetchedOn"
|
||||||
:label="$sock.t('TrialLicenseRequestFetchedOn')"
|
:label="$sock.t('LicenseFetchedOn')"
|
||||||
:rules="[form().required(this, 'fetchedOn')]"
|
|
||||||
:readonly="formState.readOnly"
|
|
||||||
:error-messages="form().serverErrors(this, 'fetchedOn')"
|
:error-messages="form().serverErrors(this, 'fetchedOn')"
|
||||||
data-cy="fetchedOn"
|
data-cy="fetchedOn"
|
||||||
@input="fieldValueChanged('fetchedOn')"
|
@input="fieldValueChanged('fetchedOn')"
|
||||||
></gz-date-time-picker>
|
></gz-date-time-picker>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12">
|
||||||
<v-select
|
|
||||||
ref="status"
|
|
||||||
v-model="obj.status"
|
|
||||||
dense
|
|
||||||
:items="selectLists.trailRequestStatus"
|
|
||||||
item-text="name"
|
|
||||||
item-value="id"
|
|
||||||
readonly
|
|
||||||
:label="$sock.t('TrialLicenseRequestStatus')"
|
|
||||||
data-cy="status"
|
|
||||||
></v-select>
|
|
||||||
</v-col>
|
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
||||||
<v-checkbox
|
|
||||||
ref="perpetual"
|
|
||||||
v-model="obj.perpetual"
|
|
||||||
dense
|
|
||||||
readonly
|
|
||||||
:label="$sock.t('TrialLicenseRequestPerpetual')"
|
|
||||||
></v-checkbox>
|
|
||||||
</v-col>
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
||||||
<v-text-field
|
|
||||||
ref="rejectReason"
|
|
||||||
v-model="obj.rejectReason"
|
|
||||||
dense
|
|
||||||
:readonly="formState.readOnly"
|
|
||||||
:label="$sock.t('TrialLicenseRequestRejectReason')"
|
|
||||||
:error-messages="form().serverErrors(this, 'rejectReason')"
|
|
||||||
data-cy="rejectReason"
|
|
||||||
@input="fieldValueChanged('rejectReason')"
|
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
|
||||||
<v-col v-if="form().showMe(this, 'SubServerNotes')" cols="12">
|
|
||||||
<v-textarea
|
<v-textarea
|
||||||
ref="key"
|
ref="key"
|
||||||
v-model="obj.key"
|
v-model="obj.key"
|
||||||
@@ -148,7 +185,6 @@
|
|||||||
auto-grow
|
auto-grow
|
||||||
></v-textarea>
|
></v-textarea>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<!-- --------------------------------- -->
|
<!-- --------------------------------- -->
|
||||||
|
|
||||||
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
||||||
@@ -161,6 +197,17 @@
|
|||||||
@input="fieldValueChanged('tags')"
|
@input="fieldValueChanged('tags')"
|
||||||
></gz-tag-picker>
|
></gz-tag-picker>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col v-if="form().showMe(this, 'Wiki')" cols="12">
|
||||||
|
<gz-wiki
|
||||||
|
ref="wiki"
|
||||||
|
v-model="obj.wiki"
|
||||||
|
:aya-type="sockType"
|
||||||
|
:aya-id="obj.id"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
@input="fieldValueChanged('wiki')"
|
||||||
|
></gz-wiki
|
||||||
|
></v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-form>
|
</v-form>
|
||||||
</div>
|
</div>
|
||||||
@@ -170,9 +217,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
const FORM_KEY = "trial-license-request-edit";
|
const FORM_KEY = "license-edit";
|
||||||
const API_BASE_URL = "trial-license-request/";
|
const API_BASE_URL = "license/";
|
||||||
const FORM_CUSTOM_TEMPLATE_KEY = "TrialLicenseRequest";
|
const FORM_CUSTOM_TEMPLATE_KEY = "License";
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -180,23 +227,23 @@ export default {
|
|||||||
obj: {
|
obj: {
|
||||||
id: 0,
|
id: 0,
|
||||||
concurrency: 0,
|
concurrency: 0,
|
||||||
dbId: null,
|
created: window.$gz.locale.nowUTC8601String(),
|
||||||
companyName: null,
|
active: false, //here, active means it's ready for pickup
|
||||||
contactName: null,
|
customerId: null,
|
||||||
email: null,
|
pGroup: 1, //default v7 since manually probably most common
|
||||||
emailConfirmCode: null,
|
regTo: null,
|
||||||
emailValidated: false,
|
|
||||||
requested: null,
|
|
||||||
processed: null,
|
|
||||||
status: 0,
|
|
||||||
rejectReason: null,
|
|
||||||
key: null,
|
key: null,
|
||||||
fetchedOn: null,
|
fetchCode: null,
|
||||||
perpetual: true,
|
fetchEmail: null,
|
||||||
|
fetchedOn: null, //here, non null fetchedOn is read only
|
||||||
|
dbId: null,
|
||||||
|
licenseExpire: null,
|
||||||
|
maintenanceExpire: null,
|
||||||
|
wiki: null,
|
||||||
tags: []
|
tags: []
|
||||||
},
|
},
|
||||||
selectLists: {
|
selectLists: {
|
||||||
trailRequestStatus: []
|
pGroups: []
|
||||||
},
|
},
|
||||||
formState: {
|
formState: {
|
||||||
ready: false,
|
ready: false,
|
||||||
@@ -209,7 +256,7 @@ export default {
|
|||||||
serverError: {}
|
serverError: {}
|
||||||
},
|
},
|
||||||
rights: window.$gz.role.defaultRightsObject(),
|
rights: window.$gz.role.defaultRightsObject(),
|
||||||
sockType: window.$gz.type.TrialLicenseRequest
|
sockType: window.$gz.type.License
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -246,9 +293,7 @@ export default {
|
|||||||
const vm = this;
|
const vm = this;
|
||||||
try {
|
try {
|
||||||
await initForm(vm);
|
await initForm(vm);
|
||||||
vm.rights = window.$gz.role.getRights(
|
vm.rights = window.$gz.role.getRights(window.$gz.type.License);
|
||||||
window.$gz.type.TrialLicenseRequest
|
|
||||||
);
|
|
||||||
vm.formState.readOnly = !vm.rights.change;
|
vm.formState.readOnly = !vm.rights.change;
|
||||||
window.$gz.eventBus.$on("menu-click", clickHandler);
|
window.$gz.eventBus.$on("menu-click", clickHandler);
|
||||||
//---------------------------------
|
//---------------------------------
|
||||||
@@ -280,6 +325,9 @@ export default {
|
|||||||
dirty: setDirty,
|
dirty: setDirty,
|
||||||
valid: true
|
valid: true
|
||||||
});
|
});
|
||||||
|
if (this.obj.fetchedOn != null) {
|
||||||
|
this.formState.readOnly = true;
|
||||||
|
}
|
||||||
//----------------------------
|
//----------------------------
|
||||||
generateMenu(vm);
|
generateMenu(vm);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -316,6 +364,15 @@ export default {
|
|||||||
return window.$gz.form;
|
return window.$gz.form;
|
||||||
},
|
},
|
||||||
fieldValueChanged(ref) {
|
fieldValueChanged(ref) {
|
||||||
|
if (ref == "fetchedOn") {
|
||||||
|
console.log("FETCHED ON CHANGED", this.obj.fetchedOn);
|
||||||
|
window.$gz.form.setFormState({
|
||||||
|
vm: this,
|
||||||
|
readOnly: this.obj.fetchedOn != null
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log("formstate is now ", this.formState);
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
this.formState.ready &&
|
this.formState.ready &&
|
||||||
!this.formState.loading &&
|
!this.formState.loading &&
|
||||||
@@ -381,7 +438,7 @@ export default {
|
|||||||
//POST
|
//POST
|
||||||
vm.obj = res.data;
|
vm.obj = res.data;
|
||||||
this.$router.replace({
|
this.$router.replace({
|
||||||
name: "trial-request-edit",
|
name: "license-edit",
|
||||||
params: {
|
params: {
|
||||||
recordid: res.data.id,
|
recordid: res.data.id,
|
||||||
obj: res.data
|
obj: res.data
|
||||||
@@ -445,7 +502,7 @@ export default {
|
|||||||
},
|
},
|
||||||
duplicate() {
|
duplicate() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "trial-request-edit",
|
name: "license-edit",
|
||||||
params: {
|
params: {
|
||||||
recordid: 0,
|
recordid: 0,
|
||||||
obj: this.obj
|
obj: this.obj
|
||||||
@@ -473,7 +530,7 @@ async function clickHandler(menuItem) {
|
|||||||
{
|
{
|
||||||
const res = await m.vm.$refs.reportSelector.open(
|
const res = await m.vm.$refs.reportSelector.open(
|
||||||
{
|
{
|
||||||
AType: window.$gz.type.TrialLicenseRequest,
|
AType: window.$gz.type.License,
|
||||||
selectedRowIds: [m.vm.obj.id]
|
selectedRowIds: [m.vm.obj.id]
|
||||||
},
|
},
|
||||||
m.id
|
m.id
|
||||||
@@ -502,9 +559,9 @@ function generateMenu(vm) {
|
|||||||
isMain: false,
|
isMain: false,
|
||||||
readOnly: vm.formState.readOnly,
|
readOnly: vm.formState.readOnly,
|
||||||
icon: "$sockiHandHoldingWater",
|
icon: "$sockiHandHoldingWater",
|
||||||
title: "TrialLicenseRequest",
|
title: "License",
|
||||||
formData: {
|
formData: {
|
||||||
sockType: window.$gz.type.TrialLicenseRequest,
|
sockType: window.$gz.type.License,
|
||||||
recordId: vm.$route.params.recordid,
|
recordId: vm.$route.params.recordid,
|
||||||
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY,
|
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY,
|
||||||
recordName: vm.obj.name
|
recordName: vm.obj.name
|
||||||
@@ -601,10 +658,8 @@ async function fetchTranslatedText() {
|
|||||||
//
|
//
|
||||||
async function populateSelectionLists(vm) {
|
async function populateSelectionLists(vm) {
|
||||||
//ensure the pick lists required are pre-fetched
|
//ensure the pick lists required are pre-fetched
|
||||||
await window.$gz.enums.fetchEnumList("trialrequeststatus");
|
await window.$gz.enums.fetchEnumList("productgroup");
|
||||||
vm.selectLists.trailRequestStatus = window.$gz.enums.getSelectionList(
|
vm.selectLists.pGroups = window.$gz.enums.getSelectionList("productgroup");
|
||||||
"trialrequeststatus"
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
"CREATE TABLE alicense (id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, created TIMESTAMPTZ NOT NULL, active BOOL NOT NULL DEFAULT false, "
|
"CREATE TABLE alicense (id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, created TIMESTAMPTZ NOT NULL, active BOOL NOT NULL DEFAULT false, "
|
||||||
|
|||||||
@@ -138,7 +138,7 @@
|
|||||||
@input="fieldValueChanged('rejectReason')"
|
@input="fieldValueChanged('rejectReason')"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col v-if="form().showMe(this, 'SubServerNotes')" cols="12">
|
<v-col cols="12">
|
||||||
<v-textarea
|
<v-textarea
|
||||||
ref="key"
|
ref="key"
|
||||||
v-model="obj.key"
|
v-model="obj.key"
|
||||||
|
|||||||
Reference in New Issue
Block a user