|
@@ -9,7 +9,7 @@
|
|
|
v-model:visible="collectListVisible"
|
|
|
placement="bottom"
|
|
|
effect="light"
|
|
|
- trigger="click"
|
|
|
+ trigger="manual"
|
|
|
:virtual-ref="triggerRef"
|
|
|
popper-class="custom-tooltip-pro"
|
|
|
>
|
|
@@ -79,7 +79,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <HcIcon name="star-half" class="mr-3 cursor-pointer" style="color:rgb(255, 125, 67);" @click="collectListClick" />
|
|
|
+ <HcIcon name="star-half" class="mr-3 cursor-pointer" style="color:rgb(255, 125, 67);" title="收藏文件夹" @click="collectListClick" />
|
|
|
</el-tooltip>
|
|
|
|
|
|
<HcIcon v-if="isLookHide" name="eye-off" style="color:#3F9EFF" class="cursor-pointer" @click="lookHideList" />
|
|
@@ -3815,6 +3815,8 @@ const collectListClick = async ()=>{
|
|
|
|
|
|
await nextTick()
|
|
|
getCollectList()
|
|
|
+ // 点击时显示收藏夹列表
|
|
|
+ collectListVisible.value = true
|
|
|
}
|
|
|
// 触发元素引用
|
|
|
const triggerRef = ref(null)
|