This commit is contained in:
2021-04-02 17:34:46 +00:00
parent b49eda77fd
commit aecaed01f7
2 changed files with 51 additions and 1 deletions

View File

@@ -0,0 +1,45 @@
<template>
<div>
<h3 class="ml-6">WorkOrderItemScheduledUsers here</h3>
</div>
</template>
<script>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
/* XXXeslint-disable */
////////////////////////////////////////////////////////////////////////////////////////////////////////////
export default {
data() {
return {};
},
props: {
value: {
default: "{}",
type: String
},
formKey: { type: String, default: "" }, //used to grab template from store
readonly: Boolean,
disabled: Boolean,
parentVM: {
default: null,
type: Object
}
},
methods: {
form() {
return window.$gz.form;
},
fieldValueChanged(ref) {
if (
!this.parentVM.formState.loading &&
!this.parentVM.formState.readonly
) {
window.$gz.form.fieldValueChanged(this.parentVM, ref);
}
}
},
computed: {}
};
</script>

View File

@@ -1,14 +1,19 @@
<template>
<div>
barebones template
<h2>WorkOrder items here</h2>
<GzWoItemScheduledUsers data-cy="woItemScheduledUsers" />
</div>
</template>
<script>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
/* XXXeslint-disable */
////////////////////////////////////////////////////////////////////////////////////////////////////////////
import GzWoItemScheduledUsers from "../components/work-order-item-scheduled-users.vue";
export default {
components: {
GzWoItemScheduledUsers
},
data() {
return {};
},