From 494fc66c06377838c2d23d6f6cf945c91c753f67 Mon Sep 17 00:00:00 2001 From: guillermo Date: Fri, 25 Oct 2024 14:14:51 +0200 Subject: [PATCH] feat: refs #7006 itemType basic data new inputs --- src/pages/Item/ItemTypeList.vue | 15 ++++----------- src/pages/ItemType/Card/ItemTypeBasicData.vue | 1 - 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/pages/Item/ItemTypeList.vue b/src/pages/Item/ItemTypeList.vue index 2c1153016a..13dd56a421 100644 --- a/src/pages/Item/ItemTypeList.vue +++ b/src/pages/Item/ItemTypeList.vue @@ -7,7 +7,6 @@ import FetchData from 'components/FetchData.vue'; const { t } = useI18n(); const tableRef = ref(); -const workerOptions = ref([]); const ItemCategoriesOptions = ref([]); const columns = computed(() => [ @@ -40,12 +39,12 @@ const columns = computed(() => [ create: true, component: 'select', attrs: { - options: workerOptions.value, - optionLabel: 'firstName', + url: 'Workers/search', + optionLabel: 'nickname', optionValue: 'id', }, - cardVisible: false, - visible: false, + cardVisible: true, + visible: true, }, { align: 'left', @@ -78,12 +77,6 @@ const columns = computed(() => [