处理下载保存文件,弹窗关闭的问题

This commit is contained in:
renpy 2023-09-11 13:42:54 +08:00
parent 2761b0da21
commit c9ca7c1a5e
6 changed files with 0 additions and 6 deletions

View File

@ -98,7 +98,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},

View File

@ -71,7 +71,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},

View File

@ -155,7 +155,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},

View File

@ -79,7 +79,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},

View File

@ -103,7 +103,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},

View File

@ -65,7 +65,6 @@ export default {
},
onCancel() {
if (_this.fileName) {
_this.visible = false
saveAs(strData, `${_this.fileName}.txt`)
}
},