|
@@ -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)
|