gcz 2 weeks ago
parent
commit
61479f4f63
2 changed files with 3 additions and 2 deletions
  1. 1 0
      src/views/DocSearch.vue
  2. 2 2
      src/views/Favorites.vue

+ 1 - 0
src/views/DocSearch.vue

@@ -505,6 +505,7 @@ const highlightText = (text) => {
         color: #6C6E72;
         cursor: pointer;
         margin-left: 12px;
+        width:fit-content;
       }
     }
 

+ 2 - 2
src/views/Favorites.vue

@@ -45,7 +45,6 @@
             v-for="item in filteredFavorites"
             :key="item.id"
             class="favorite-item"
-            @click="handleItemClick(item)"
           >
             <div class="item-content">
               <el-checkbox 
@@ -53,7 +52,7 @@
                 v-model="item.checked"
                 @change="handleItemSelect"
               />
-              <div class="item-title">{{ item.name||item.fileName }}</div>
+              <div class="item-title" @click="handleItemClick(item)">{{ item.name||item.fileName }}</div>
               <div class="item-info">
                 <span class="item-date">{{ formatDate(item.createTime) }}</span>
                 <el-dropdown v-if="!isBatchMode" @command="handleCommand($event, item)">
@@ -288,6 +287,7 @@ const handleBatchDelete = async () => {
 
 // 单项操作相关方法
 const handleCommand = (command, item) => {
+  console.log('command', command);
   switch (command) {
     case 'rename':
       showRenameDialog(item)