This commit is contained in:
670788339
2025-11-12 11:06:28 +08:00
parent fc857ccf63
commit 0f11e8f317
2 changed files with 6 additions and 3 deletions

View File

@@ -459,9 +459,9 @@ export default {
// }
// 添加计算是否所有热点标签都未选中(即"全部"选中状态)
// isAllHotTagsSelected() {
// return !this.hotTagsList.some(tag => tag.checked);
// }
isAllHotTagsSelected() {
return !this.hotTagsList.some(tag => tag.checked);
}
},
data() {
return {

View File

@@ -444,6 +444,9 @@ export default {
});
return !flag;
},
isAllHotTagsSelected() {
return !this.hotTagsList.some(tag => tag.checked);
}
},
data() {
return {