From a77743dd177a3c2c9312bba2f63b7f06f7a7f710 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Thu, 15 Aug 2024 11:13:42 +0700 Subject: [PATCH] refactor(04): service code and tab --- .../04_product-service/BasicInformation.vue | 45 ++++++++++++++++++- src/pages/04_product-service/MainPage.vue | 1 + 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/src/components/04_product-service/BasicInformation.vue b/src/components/04_product-service/BasicInformation.vue index f679ece5..ff64179a 100644 --- a/src/components/04_product-service/BasicInformation.vue +++ b/src/components/04_product-service/BasicInformation.vue @@ -36,6 +36,14 @@ const branchFilter = selectFilterOptionRefMod( branchOptions, 'name', ); + +const serviceCodeOpts = ref([{ label: 'mou', value: 'mou' }]); +const serviceCodeOptions = ref[]>([]); +const serviceCodeFilter = selectFilterOptionRefMod( + serviceCodeOpts, + serviceCodeOptions, + 'label', +);