diff --git a/src/App.vue b/src/App.vue index cee3880..8fa6c94 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,6 +40,13 @@ const historyList = ref([]); const historyMap = ref>({}); const currentHistoryKey = ref(""); +const filteredHistoryList = computed(() => { + if (!videoNameInput.value) { + return historyList.value; + } + return historyList.value.filter(item => item.toLowerCase().includes(videoNameInput.value.toLowerCase())); +}); + // Check Data const checkLogs = ref([]); const logContainerRef = ref(null); @@ -602,10 +609,11 @@ watch(currentDir, (newPath) => {
- + 命名 + 清空
@@ -613,7 +621,7 @@ watch(currentDir, (newPath) => {

历史记录 ({{ currentHistoryKey || '未关联目录' }})

    -
  • +
  • {{ item }}
  • @@ -847,4 +855,7 @@ body { .el-main.review-active { padding: 20px; } +.action-area .clear-button-margin-fix { + margin-left: 0; /* Adjust this value as needed to fine-tune the gap */ +} \ No newline at end of file