Compare commits

...

2 Commits

Author SHA1 Message Date
fanxb
6759333fb4 feat:全选支持选中文件夹 2024-10-30 20:13:55 +08:00
fanxb
62d9296b46 feat:全选支持选中文件夹 2024-10-30 20:13:34 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ export default {
name: "Home", name: "Home",
data() { data() {
return { return {
version: "1.6.3", version: "1.6.4",
latestVersion: null, latestVersion: null,
activeIndex: location.pathname, activeIndex: location.pathname,
showNewVersion: false showNewVersion: false

View File

@ -122,7 +122,7 @@ export default {
}, },
// //
selectAll(status) { selectAll(status) {
this.filterFileList.filter((item) => !item.isFolder).forEach((item) => (item.checked = status)); this.filterFileList.forEach((item) => (item.checked = status));
}, },
//index //index
createPath(index) { createPath(index) {