diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue
index 94c5d35f..6ffd3f1e 100644
--- a/src/pages/03_customer-management/MainPage.vue
+++ b/src/pages/03_customer-management/MainPage.vue
@@ -1783,6 +1783,7 @@ watch(
>
{
selectorLabel = 'EMPLOYER';
@@ -1804,6 +1805,7 @@ watch(
{
selectorLabel = 'EMPLOYEE';
diff --git a/src/pages/04_product-service/MainPage.vue b/src/pages/04_product-service/MainPage.vue
index f8913215..45c365fa 100644
--- a/src/pages/04_product-service/MainPage.vue
+++ b/src/pages/04_product-service/MainPage.vue
@@ -150,12 +150,12 @@ const treeProductTypeAndGroup = computed(() => {
type: 'group',
children:
item.id === currentId.value
- ? recordTreeProductType.value[currentId.value]?.map((item) => ({
- ...item,
+ ? recordTreeProductType.value[currentId.value]?.map((x) => ({
+ ...x,
type: 'type',
})) ?? []
- : recordTreeProductType.value[item.id]?.map((item) => ({
- ...item,
+ : recordTreeProductType.value[item.id]?.map((x) => ({
+ ...x,
type: 'type',
})) ?? [],
};
@@ -1688,6 +1688,7 @@ watch(
>
{
@@ -2556,6 +2559,7 @@ watch(
{
@@ -3258,6 +3262,7 @@ watch(