diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 4a37ac35..19e79c72 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -1202,7 +1202,11 @@ const emptyCreateDialog = ref(false); {{ props.row.customerType === 'CORP' ? props.row.branch[0]?.registerName || '-' - : props.row.branch[0]?.firstName + + : optionStore.mapOption( + props.row.branch[0].namePrefix, + ) + + ' ' + + props.row.branch[0]?.firstName + ' ' + props.row.branch[0]?.lastName || '-' }}