This commit is contained in:
@@ -222,6 +222,49 @@
|
|||||||
@change="fieldValueChanged('onsite')"
|
@change="fieldValueChanged('onsite')"
|
||||||
></v-checkbox>
|
></v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
||||||
|
<gz-tag-picker
|
||||||
|
v-model="value.tags"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
ref="tags"
|
||||||
|
data-cy="tags"
|
||||||
|
:error-messages="form().serverErrors(this, 'tags')"
|
||||||
|
@input="fieldValueChanged('tags')"
|
||||||
|
></gz-tag-picker>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12">
|
||||||
|
<gz-custom-fields
|
||||||
|
v-model="value.customFields"
|
||||||
|
:form-key="formCustomTemplateKey"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:parent-v-m="this"
|
||||||
|
ref="customFields"
|
||||||
|
data-cy="customFields"
|
||||||
|
:error-messages="form().serverErrors(this, 'customFields')"
|
||||||
|
@input="fieldValueChanged('customFields')"
|
||||||
|
></gz-custom-fields>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col v-if="form().showMe(this, 'Wiki')" cols="12">
|
||||||
|
<gz-wiki
|
||||||
|
:aya-type="pvm.ayaType"
|
||||||
|
:aya-id="value.id"
|
||||||
|
ref="wiki"
|
||||||
|
v-model="value.wiki"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
@input="fieldValueChanged('wiki')"
|
||||||
|
></gz-wiki
|
||||||
|
></v-col>
|
||||||
|
|
||||||
|
<v-col v-if="form().showMe(this, 'Attachments') && value.id" cols="12">
|
||||||
|
<gz-attachments
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:aya-type="pvm.ayaType"
|
||||||
|
:aya-id="value.id"
|
||||||
|
></gz-attachments
|
||||||
|
></v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
:pvm="this"
|
:pvm="this"
|
||||||
data-cy="woItems"
|
data-cy="woItems"
|
||||||
@change="setDirty()"
|
@change="setDirty()"
|
||||||
|
class="mt-16"
|
||||||
/>
|
/>
|
||||||
</v-form>
|
</v-form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user