This commit is contained in:
2021-07-08 13:34:16 +00:00
parent d0a047dcb1
commit 0379e7525b
2 changed files with 4 additions and 8 deletions

View File

@@ -94,7 +94,7 @@
@change="fieldValueChanged('includeWoItemDescendants')"
></v-checkbox>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select
v-model="obj.aType"
:items="selectLists.coreAyaTypes"
@@ -1132,6 +1132,7 @@ function generateMenu(vm) {
//
async function initForm(vm) {
await fetchTranslatedText(vm);
await populateSelectionLists(vm);
}
//////////////////////////////////////////////////////////
@@ -1199,11 +1200,7 @@ async function fetchReportData(vm) {
//
//
async function populateSelectionLists(vm) {
await window.$gz.enums.fetchEnumList("coreview");
vm.selectLists.coreAyaTypes = window.$gz.enums.getSelectionList("coreview");
}
</script>