This commit is contained in:
@@ -18,6 +18,7 @@ todo: CUSTOMER UI FORM AND USERS OFF OF THAT
|
||||
Figure out how to have my data-table custom system support pre-additional criteria (which it really should)
|
||||
or
|
||||
As per below, make my datalist have an alternative display without datafilter UI stuff and just takes a provided datalistview
|
||||
making custom data-list forms with pre-gathering all the enums etc is weird since the gz-data-table supports all that anyway
|
||||
|
||||
|
||||
Customer User UI area accessed from Customer form for CRUD User accounts tied to customers and also for setting up Notifications for those users
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="text-h4 text-md-h2 mb-2">
|
||||
{{ $ay.t("Welcome") }}
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<div class="mb-2">
|
||||
{{ $ay.t("ThankYouForEvaluating") }}
|
||||
</div>
|
||||
</v-col>
|
||||
@@ -106,55 +106,6 @@
|
||||
$ay.t("GenerateSampleData")
|
||||
}}</v-btn>
|
||||
</v-col>
|
||||
<!-- <v-col cols="12">
|
||||
<div class="text-h5 mt-8 mb-2">
|
||||
{{ $ay.t("GenerateSampleData") }}
|
||||
</div>
|
||||
<v-col cols="12" sm="6" v-if="formState.readOnly">
|
||||
<div class="text-h6 mt-8 warning--text">
|
||||
{{ $ay.t("ErrorSecurityAdministratorOnlyMessage") }}
|
||||
</div>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6">
|
||||
<v-select
|
||||
v-model="obj.seedLevel"
|
||||
:items="selectLists.seedLevels"
|
||||
:rules="[form().required(this, 'seedLevel')]"
|
||||
@input="fieldValueChanged('seedLevel')"
|
||||
ref="seedLevel"
|
||||
item-text="name"
|
||||
item-value="id"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:label="$ay.t('SeedLevel')"
|
||||
></v-select>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6">
|
||||
<v-text-field
|
||||
v-model="obj.timeZoneOffset"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:rules="[
|
||||
form().decimalValid(this, 'timeZoneOffset'),
|
||||
form().required(this, 'timeZoneOffset')
|
||||
]"
|
||||
:label="$ay.t('UserTimeZoneOffset')"
|
||||
type="number"
|
||||
ref="timeZoneOffset"
|
||||
@input="fieldValueChanged('timeZoneOffset')"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-btn
|
||||
:loading="seedingJobActive"
|
||||
:disabled="formState.readOnly"
|
||||
@click="generate()"
|
||||
class="my-8 mr-4"
|
||||
>{{ $ay.t("StartJob") }}</v-btn
|
||||
>
|
||||
</v-col>
|
||||
</v-col> -->
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-form>
|
||||
|
||||
Reference in New Issue
Block a user