diff --git a/src/components/04_flow-management/FormFlow.vue b/src/components/04_flow-management/FormFlow.vue index deb80bcc..ac28041d 100644 --- a/src/components/04_flow-management/FormFlow.vue +++ b/src/components/04_flow-management/FormFlow.vue @@ -1,7 +1,8 @@ + + diff --git a/src/components/shared/SelectMenuWithSearch.vue b/src/components/shared/SelectMenuWithSearch.vue index 631a2609..788b1e62 100644 --- a/src/components/shared/SelectMenuWithSearch.vue +++ b/src/components/shared/SelectMenuWithSearch.vue @@ -11,12 +11,14 @@ const props = withDefaults( option: Record[]; optionLabel?: string; + separatorIndex?: number[]; }>(), { readonly: false, option: () => [], optionLabel: 'label', offset: () => [0, 12], + separatorIndex: () => [], }, ); @@ -88,6 +90,7 @@ defineEmits<{ dense :key="i" class="flex items-center" + :class="{ 'bordered-t': separatorIndex.includes(i) }" clickable @click.stop="$emit('select', opt)" > @@ -100,6 +103,10 @@ defineEmits<{ + + diff --git a/src/i18n/eng.ts b/src/i18n/eng.ts index 8e817e70..9f26d2be 100644 --- a/src/i18n/eng.ts +++ b/src/i18n/eng.ts @@ -122,6 +122,7 @@ export default { company: 'Company', agencies: 'Agencies', form: 'Form', + properties: 'Properties', designForm: 'Design Form', }, @@ -818,6 +819,8 @@ export default { step: 'Step', stepNo: 'Step no {msg}', responsiblePerson: 'Responsible Person', + customer: 'Customer', + officer: 'Officer', }, agencies: { diff --git a/src/i18n/tha.ts b/src/i18n/tha.ts index 83936e57..07a85896 100644 --- a/src/i18n/tha.ts +++ b/src/i18n/tha.ts @@ -123,6 +123,7 @@ export default { agencies: 'หน่วยงาน', form: 'แบบฟอร์ม', designForm: 'ออกแบบฟอร์ม', + properties: 'คุณสมบัติ', }, menu: { @@ -811,6 +812,8 @@ export default { step: 'ขั้นตอน', stepNo: 'ขั้นตอนที่ {msg}', responsiblePerson: 'ผู้รับผิดชอบ', + customer: 'ลูกค้า', + officer: 'เจ้าหน้าที่', }, agencies: { diff --git a/src/pages/04_flow-managment/FlowDialog.vue b/src/pages/04_flow-managment/FlowDialog.vue index fc2593e0..f2287655 100644 --- a/src/pages/04_flow-managment/FlowDialog.vue +++ b/src/pages/04_flow-managment/FlowDialog.vue @@ -1,11 +1,13 @@