This commit is contained in:
2019-11-28 23:53:04 +00:00
parent 281f597a5b
commit 852cf50084
2 changed files with 41 additions and 9 deletions

View File

@@ -54,7 +54,13 @@
@change="onChange('serial')"
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col
v-if="form().showMe(this, 'WidgetCount')"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-text-field
v-model="obj.count"
:readonly="this.formState.readOnly"
@@ -74,7 +80,13 @@
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col
v-if="form().showMe(this, 'WidgetDollarAmount')"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-text-field
v-model="obj.dollarAmount"
:readonly="this.formState.readOnly"
@@ -114,7 +126,13 @@
@change="onChange('endDate')"
></gz-date-time-picker>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col
v-if="form().showMe(this, 'Active')"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-checkbox
v-model="obj.active"
:readonly="this.formState.readOnly"
@@ -125,7 +143,13 @@
@change="onChange('active')"
></v-checkbox>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col
v-if="form().showMe(this, 'WidgetRoles')"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-select
v-model="obj.roles"
:items="pickLists.roles"
@@ -144,7 +168,7 @@
></v-select>
</v-col>
<v-col cols="12">
<v-col v-if="form().showMe(this, 'WidgetNotes')" cols="12">
<v-textarea
v-model="obj.notes"
:readonly="this.formState.readOnly"
@@ -160,7 +184,7 @@
></v-textarea>
</v-col>
<v-col cols="12">
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
<gz-tag-picker
v-model="obj.tags"
:readonly="this.formState.readOnly"