diff --git a/src/components/04_product-service/FormServiceWork.vue b/src/components/04_product-service/FormServiceWork.vue index b5e284ca..ca9fb965 100644 --- a/src/components/04_product-service/FormServiceWork.vue +++ b/src/components/04_product-service/FormServiceWork.vue @@ -12,6 +12,7 @@ const workItems = ref([ { id: '1', label: 'ค่าธรรมเนียมใบอนุญาตทำงาน 2 ปี', + labelEn: '2 year work permit fee', code: 'AC101', price: '1,200.00', time: '14', @@ -24,6 +25,7 @@ const workItems = ref([ { id: '1', label: 'ค่าธรรมเนียมใบอนุญาตทำงาน 2 ปี', + labelEn: '2 year work permit fee', code: 'AC101', price: '1,200.00', time: '14', @@ -32,6 +34,8 @@ const workItems = ref([ id: '1', label: 'ค่าบริการและค่าดำเนินงานยื่นคำร้องขอใบอนุญาตทำงานแทน คนงานต่างด้าว MOU', + labelEn: + 'Service and processing fees for submitting a work permit application on behalf of an MOU foreign worker', code: 'AC102', price: '1,200.00', time: '14', @@ -77,8 +81,10 @@ defineEmits<{ diff --git a/src/components/04_product-service/WorkManagementComponent.vue b/src/components/04_product-service/WorkManagementComponent.vue index d2c33fc8..8743083d 100644 --- a/src/components/04_product-service/WorkManagementComponent.vue +++ b/src/components/04_product-service/WorkManagementComponent.vue @@ -1,16 +1,18 @@ - - - - - - - - - - - - - - - + - {{ $t('productInWork') }} {{ workIndex + 1 }} - - - - - - + + + + + + + + + {{ $t('workNo') }} {{ index + 1 }} : + + + + + + + + + {{ $t('productInWork') }} {{ workIndex + 1 }} + + - + - {{ index + 1 }} - + + + + - - - - - - - {{ product.label }} - {{ product.label }} - - - {{ product.code }} + + {{ index + 1 }} + + + + + + + + + {{ + $i18n.locale === 'en-US' + ? product.labelEn + : product.label + }} + + {{ + $i18n.locale === 'en-US' + ? product.labelEn + : product.label + }} + + + + {{ product.code }} + + + + + + + + ฿ {{ product.price }} + + + {{ $t('processTime') }} + + + {{ product.time }} {{ $t('day') }} + + + - - - - ฿ {{ product.price }} - - - {{ $t('processTime') }} - - - {{ product.time }} {{ $t('day') }} - - + + + + {{ $t('totalProductWork') }} + + {{ workName }} + + + {{ productItems?.length ?? 0 }} {{ $t('list') }} @@ -181,4 +239,15 @@ defineEmits<{ border-radius: 10px; background-color: var(--surface-3); } + +:deep(i.q-icon.mdi.mdi-chevron-down-circle.q-expansion-item__toggle-icon) { + color: var(--brand-1); +} + +:deep( + .q-item__section.column.q-item__section--side.justify-center.q-item__section--avatar.q-focusable.relative-position.cursor-pointer + ) { + padding-right: 8px !important; + min-width: 0px; +}