This commit is contained in:
X1627315083
2024-06-28 09:32:18 +08:00
parent cc7b636421
commit 360858a84d
2 changed files with 4 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ setup(props,{emit}) {
cleardata() cleardata()
} }
let setOk= ()=>{ let setOk= ()=>{
let data = selectImgListData.imgList.filter((item:any)=>!item.isChecked); let data = selectImgListData.imgList.filter((item:any)=>item.isChecked);
if(data.length > 0){ if(data.length > 0){
emit('setImgGetColor',data[0]) emit('setImgGetColor',data[0])
} }

View File

@@ -551,6 +551,9 @@ export default defineComponent({
turnToWindow(url: any) { turnToWindow(url: any) {
window.open(url); window.open(url);
}, },
cancelDsign(){
this.registerModel = false
}
}, },
}); });
</script> </script>