diff --git a/src/component/home/design/tools.vue b/src/component/home/design/tools.vue index bc89fe9d..0044cd6d 100644 --- a/src/component/home/design/tools.vue +++ b/src/component/home/design/tools.vue @@ -163,6 +163,7 @@ export default defineComponent({ if(value == 'toProduct'){ list.forEach((item:any) => { item.type = 'DesignOutfit' + item.isChecked = false fileList.push(item) item.childList.forEach((child:any) => { if(child.resultType == 'ToProductImage'){ @@ -174,6 +175,7 @@ export default defineComponent({ list.forEach((item:any) => { if(item.childList){ item.childList.forEach((child:any) => { + child.isChecked = false if(child.resultType == 'ToProductImage' || child.resultType == 'Relight'){ fileList.push(child) }