diff --git a/src/pages/04_product-service/MainPage.vue b/src/pages/04_product-service/MainPage.vue index 94299860..30088f3e 100644 --- a/src/pages/04_product-service/MainPage.vue +++ b/src/pages/04_product-service/MainPage.vue @@ -3830,15 +3830,6 @@ watch( } " > -
- @@ -4114,16 +4069,6 @@ watch( } " > - -
{ await fetchListOfProductIsAdd(currentIdType); currentWorkIndex = index; - selectProduct = workItems[currentWorkIndex].product; + selectProduct = JSON.parse( + JSON.stringify(workItems[currentWorkIndex].product), + ); dialogTotalProduct = true; } " @@ -4432,7 +4379,9 @@ watch( async (index) => { await fetchListOfProductIsAdd(currentIdType); currentWorkIndex = index; - selectProduct = workItems[currentWorkIndex].product; + selectProduct = JSON.parse( + JSON.stringify(workItems[currentWorkIndex].product), + ); dialogTotalProduct = true; } " @@ -4467,72 +4416,6 @@ watch( " />
-