diff --git a/resources/assets/js/pages/manage/file.vue b/resources/assets/js/pages/manage/file.vue index e76c4ec2..7a5d3f72 100644 --- a/resources/assets/js/pages/manage/file.vue +++ b/resources/assets/js/pages/manage/file.vue @@ -46,14 +46,14 @@ @@ -845,6 +845,8 @@ export default { this.searchKey = ''; this.pid = item.id; } else { + // 清空已选项 + this.clearSelect() if (this.$Electron) { this.openSingle(item); } else { @@ -871,7 +873,7 @@ export default { clickRow(row) { // 清空已选择的行 - this.selectFile = []; + this.clearSelect(); this.dropFile(row, 'open'); },