From 3ddea74b73b4df1557427f53c6e1afc97e22740f Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 11 Jul 2025 11:05:53 +0700 Subject: [PATCH] fix: card business type not show --- src/pages/03_customer-management/MainPage.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 9f19d712..f24c6b3b 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -1634,9 +1634,11 @@ const emptyCreateDialog = ref(false); {{ key === 'businessTypePure' - ? optionStore.mapOption( - props.row.branch[0].businessType, - ) + ? props.row.branch[0].businessType[ + $i18n.locale === 'eng' + ? 'nameEN' + : 'name' + ] : key === 'jobPosition' ? optionStore.mapOption( props.row.branch[0].jobPosition,