This commit is contained in:
2021-04-02 19:36:41 +00:00
parent 82d912d7c9
commit b75281ef4a
2 changed files with 13 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div>
<h3 class="ml-6">WorkOrderItemScheduledUsers here</h3>
<h5 class="ml-12">WorkOrderItemScheduledUsers here</h5>
</div>
</template>
<script>

View File

@@ -1,15 +1,19 @@
<template>
<div>
<h2>WorkOrder items here</h2>
<template v-if="value.items.count > 1">
table of woitems here
</template>
<template v-if="pvm.selectedItemIndex">
woitem is selected
</template>
woitemfields
<GzWoItemScheduledUsers data-cy="woItemScheduledUsers" />
items:{{ value.items }}<br />
<template v-if="value.items && value.items.length > 0">
<h3>table of woitems here</h3>
itemcount:{{ value.items.length }}
</template>
<template v-if="pvm.selectedItemIndex != null">
selected index: {{ pvm.selectedItemIndex }}
<h4>woitemform here</h4>
<h5 class="ml-5">woitem grandchildren here</h5>
<GzWoItemScheduledUsers data-cy="woItemScheduledUsers" />
</template>
</div>
</template>
<script>